We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e15954b + b15e713 commit 6939d4fCopy full SHA for 6939d4f
.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