Skip to content

Commit 868a9fc

Browse files
committedNov 6, 2024
Merge branch 'main' into v13
2 parents 71b059b + 88fef9a commit 868a9fc

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed
 

‎.github/workflows/ci.yml

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ on:
55
pull_request:
66
branches: ['**']
77

8+
concurrency:
9+
group: ${{ github.workflow }}-${{ github.ref }}
10+
cancel-in-progress: ${{ !contains(github.ref, 'main')}}
11+
812
jobs:
913
install-cache-deps:
1014
runs-on: ubuntu-latest

‎.github/workflows/deploy-website.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: Website
22

33
on:
44
push:
5-
branches:
6-
- main
5+
branches: [main]
6+
paths: ['website/**']
77

88
jobs:
99
deploy:

‎.github/workflows/example-apps.yml

+2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,10 @@ name: Validate Example Apps
33
on:
44
push:
55
branches: [main]
6+
paths: ['examples/**']
67
pull_request:
78
branches: ['**']
9+
paths: ['examples/**']
810

911
jobs:
1012
test-example:

0 commit comments

Comments
 (0)