We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf4fcea commit b15e713Copy full SHA for b15e713
.github/workflows/ci.yml
@@ -6,6 +6,11 @@ on:
6
schedule:
7
- cron: "40 5 * * *" # every day at 5:40
8
9
+# This causes PR pushes to cancel previous builds, but does not impact cron jobs due to use of .ref, which will have the commit.
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12
+ cancel-in-progress: true
13
+
14
jobs:
15
check:
16
name: Check
0 commit comments