We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28925b1 commit 4e3a8a8Copy full SHA for 4e3a8a8
.github/workflows/pull_request.yml
@@ -4,6 +4,13 @@ name: Pull request checks
4
on:
5
pull_request:
6
branches: [ github-actions ]
7
+
8
+# Disallow concurrent runs for the same PR by cancelling in-progress runs
9
+# when new commits are pushed
10
+concurrency:
11
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12
+ cancel-in-progress: true
13
14
jobs:
15
build:
16
name: Build
0 commit comments