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 a383063 commit f7bed34Copy full SHA for f7bed34
.github/workflows/main.yml
@@ -1,9 +1,13 @@
1
name: CI
2
on:
3
push:
4
- branches-ignore: [master]
+ branches:
5
+ - auto-cargo
6
+ - try
7
+ - automation/bors/try
8
pull_request:
- branches: ['*']
9
10
+ - "**"
11
12
defaults:
13
run:
@@ -12,6 +16,10 @@ defaults:
16
permissions:
17
contents: read
14
18
19
+concurrency:
20
+ group: "${{ github.workflow }}-${{ (github.ref == 'refs/heads/try' && github.sha) || github.ref }}"
21
+ cancel-in-progress: true
22
+
15
23
jobs:
24
success:
25
0 commit comments