File tree Expand file tree Collapse file tree 1 file changed +35
-35
lines changed Expand file tree Collapse file tree 1 file changed +35
-35
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,41 @@ permissions:
13
13
contents : read
14
14
15
15
jobs :
16
+ success :
17
+ permissions :
18
+ contents : none
19
+ name : bors build finished
20
+ needs :
21
+ - build_std
22
+ - clippy
23
+ - docs
24
+ - lockfile
25
+ - resolver
26
+ - rustfmt
27
+ - test
28
+ - test_gitoxide
29
+ runs-on : ubuntu-latest
30
+ if : " success() && github.event_name == 'push' && github.ref == 'refs/heads/auto-cargo'"
31
+ steps :
32
+ - run : echo ok
33
+ failure :
34
+ permissions :
35
+ contents : none
36
+ name : bors build finished
37
+ needs :
38
+ - build_std
39
+ - clippy
40
+ - docs
41
+ - lockfile
42
+ - resolver
43
+ - rustfmt
44
+ - test
45
+ - test_gitoxide
46
+ runs-on : ubuntu-latest
47
+ if : " !success() && github.event_name == 'push' && github.ref == 'refs/heads/auto-cargo'"
48
+ steps :
49
+ - run : exit 1
50
+
16
51
# Check Code style quickly by running `rustfmt` over all code
17
52
rustfmt :
18
53
runs-on : ubuntu-latest
@@ -211,38 +246,3 @@ jobs:
211
246
cd target
212
247
curl -sSLO https://raw.githubusercontent.com/rust-lang/rust/master/src/tools/linkchecker/linkcheck.sh
213
248
sh linkcheck.sh --all --path ../src/doc cargo
214
-
215
- success :
216
- permissions :
217
- contents : none
218
- name : bors build finished
219
- needs :
220
- - build_std
221
- - clippy
222
- - docs
223
- - lockfile
224
- - resolver
225
- - rustfmt
226
- - test
227
- - test_gitoxide
228
- runs-on : ubuntu-latest
229
- if : " success() && github.event_name == 'push' && github.ref == 'refs/heads/auto-cargo'"
230
- steps :
231
- - run : echo ok
232
- failure :
233
- permissions :
234
- contents : none
235
- name : bors build finished
236
- needs :
237
- - build_std
238
- - clippy
239
- - docs
240
- - lockfile
241
- - resolver
242
- - rustfmt
243
- - test
244
- - test_gitoxide
245
- runs-on : ubuntu-latest
246
- if : " !success() && github.event_name == 'push' && github.ref == 'refs/heads/auto-cargo'"
247
- steps :
248
- - run : exit 1
You can’t perform that action at this time.
0 commit comments