We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e299e17 commit a1d78a1Copy full SHA for a1d78a1
.github/workflows/run_tests.yml
@@ -6,6 +6,13 @@ on:
6
pull_request:
7
branches: [ master, develop ]
8
9
+# Cancel job when new commit is pushed for the same build
10
+# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#concurrency
11
+# https://github.com/OSGeo/gdal/pull/5460
12
+concurrency:
13
+ group: ${{ github.workflow }}-${{ github.head_ref || github.ref }}
14
+ cancel-in-progress: true
15
+
16
jobs:
17
build:
18
runs-on: ubuntu-latest
0 commit comments