We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 71b059b + 88fef9a commit 868a9fcCopy full SHA for 868a9fc
.github/workflows/ci.yml
@@ -5,6 +5,10 @@ on:
5
pull_request:
6
branches: ['**']
7
8
+concurrency:
9
+ group: ${{ github.workflow }}-${{ github.ref }}
10
+ cancel-in-progress: ${{ !contains(github.ref, 'main')}}
11
+
12
jobs:
13
install-cache-deps:
14
runs-on: ubuntu-latest
.github/workflows/deploy-website.yml
@@ -2,8 +2,8 @@ name: Website
2
3
on:
4
push:
- branches:
- - main
+ branches: [main]
+ paths: ['website/**']
deploy:
.github/workflows/example-apps.yml
@@ -3,8 +3,10 @@ name: Validate Example Apps
branches: [main]
+ paths: ['examples/**']
test-example:
0 commit comments