We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c64e41a commit 614a7e3Copy full SHA for 614a7e3
.github/workflows/codeql-analysis.yml
@@ -13,13 +13,19 @@ name: 'CodeQL'
13
14
on:
15
push:
16
- branches: [ master ]
+ branches: [master]
17
pull_request:
18
# The branches below must be a subset of the branches above
19
branches: [master]
20
schedule:
21
- cron: '40 3 * * 0'
22
23
+# Cancel in progress workflows on pull_requests.
24
+# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
25
+concurrency:
26
+ group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
27
+ cancel-in-progress: true
28
+
29
jobs:
30
analyze:
31
name: Analyze
0 commit comments