This repository was archived by the owner on May 23, 2024. It is now read-only.
File tree 3 files changed +26
-14
lines changed
3 files changed +26
-14
lines changed Original file line number Diff line number Diff line change @@ -2,19 +2,26 @@ name: Autofix
2
2
3
3
on :
4
4
schedule :
5
- - cron : ' 0 12 * * *'
5
+ - cron : " 0 12 * * *"
6
6
7
7
jobs :
8
8
build :
9
9
runs-on : ubuntu-latest
10
10
if : github.repository == 'rust-lang/glacier'
11
11
12
12
steps :
13
- - uses : actions/checkout@v1
14
- - name : Configure Git
15
- run : |
16
- git config --global user.name "rustbot"
17
- git config --global user.email "[email protected] "
18
- - run : cargo run -p autofix
19
- env :
20
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
13
+ - uses : actions/checkout@v1
14
+
15
+ - name : Configure Git
16
+ run : |
17
+ git config --global user.name "rustbot"
18
+ git config --global user.email "[email protected] "
19
+
20
+ - name : Configure rustup
21
+ run : |
22
+ rustup set profile minimal
23
+ rustup toolchain install nightly
24
+
25
+ - run : cargo run -p autofix
26
+ env :
27
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 11
11
if : github.repository == 'rust-lang/glacier'
12
12
13
13
steps :
14
- - uses : actions/checkout@v1
14
+ - uses : actions/checkout@v1
15
15
16
- - name : Cargo run labeler
17
- run : cargo run -p labeler
18
- env :
19
- LABEL_TOKEN : ${{ secrets.LABEL_TOKEN }}
16
+ - name : Cargo run labeler
17
+ run : cargo run -p labeler
18
+ env :
19
+ LABEL_TOKEN : ${{ secrets.LABEL_TOKEN }}
Original file line number Diff line number Diff line change 9
9
steps :
10
10
- uses : actions/checkout@v1
11
11
12
+ - name : Configure rustup
13
+ run : |
14
+ rustup set profile minimal
15
+ rustup toolchain install nightly
16
+
12
17
- name : cargo run glacier
13
18
run : cargo run
14
19
You can’t perform that action at this time.
0 commit comments