We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 22899cb + f619fac commit 945fdf9Copy full SHA for 945fdf9
1 file changed
.github/workflows/deploy.yml
@@ -1,7 +1,13 @@
1
name: build-scratch-blocks
2
on:
3
push: # Runs whenever a commit is pushed to the repository
4
+ pull_request: # Runs on pull requests (including from forks)
5
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
6
+
7
+concurrency:
8
+ group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
9
+ cancel-in-progress: ${{ github.event_name == 'pull_request' }}
10
11
jobs:
12
lint:
13
runs-on: ubuntu-latest
0 commit comments