We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b13490c commit c1eb2e9Copy full SHA for c1eb2e9
.github/workflows/dev.yml
@@ -11,6 +11,13 @@ on:
11
paths-ignore:
12
- "**/README.md"
13
- "docs/**"
14
+
15
+# Cancel any in-progress PR workflow runs when PR is closed
16
+# Used to ensure cleanup runs after any PR build are uploaded (or aborts before the upload)
17
+concurrency:
18
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
19
+ cancel-in-progress: ${{ github.event.action == 'closed' }}
20
21
jobs:
22
set_version:
23
if: ${{ github.event_name != 'pull_request' || github.event.action != 'closed' }}
0 commit comments