We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d5b6c7 commit bfd0efcCopy full SHA for bfd0efc
.github/workflows/ci.yml
@@ -13,6 +13,12 @@ on:
13
permissions:
14
contents: read
15
16
+# Cancel in-progress runs for pull requests when developers push
17
+# additional changes
18
+concurrency:
19
+ group: ${{ github.workflow }}-${{ github.ref }}
20
+ cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
21
+
22
jobs:
23
test:
24
name: test
.github/workflows/release.yml
@@ -9,6 +9,12 @@ on:
9
10
permissions: {}
11
12
+# Cancel in-progress runs for when multiple PRs get merged
+# in quickl succession. Ignore this for tag releases though.
+ cancel-in-progress: ${{ !contains(github.ref, 'tags/')}}
build:
name: Build Coder Desktop
0 commit comments