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 54eb513 commit add06c0Copy full SHA for add06c0
.github/workflows/test.yml
@@ -16,6 +16,14 @@ on:
16
- resolveissue-*
17
- demo*
18
19
+# Credits to https://blog.maximeheckel.com/posts/building-perfect-github-action-frontend-teams/
20
+concurrency:
21
+ # Here the group is defined by the head_ref of the PR
22
+ group: ${{ github.head_ref }}
23
+ # Here we specify that we'll cancel any "in progress" workflow of the same group. Thus if we push, ammend a commit and push
24
+ # again the previous workflow will be cancelled, thus saving us github action build minutes and avoid any conflicts
25
+ cancel-in-progress: true
26
+
27
jobs:
28
all-test:
29
runs-on: ubuntu-latest
0 commit comments