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 dff1057 commit 80bdcd9Copy full SHA for 80bdcd9
.github/workflows/main.yml
@@ -1,5 +1,11 @@
1
name: snmalloc CI
2
3
+# The following should ensure that the workflow only runs a single set of actions
4
+# for each PR. But it will not apply this to pushes to the main branch.
5
+concurrency:
6
+ group: ${{ github.ref }}
7
+ cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
8
+
9
# Controls when the workflow will run
10
on:
11
# Triggers the workflow on push or pull request events but only for the master branch
0 commit comments