File tree Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Expand file tree Collapse file tree 2 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -3,14 +3,21 @@ name: CompatHelper
3
3
on :
4
4
schedule :
5
5
- cron : ' 00 00 * * *'
6
+ workflow_dispatch :
6
7
7
8
jobs :
8
9
CompatHelper :
9
- runs-on : ubuntu-latest
10
+ runs-on : ${{ matrix.os }}
11
+ strategy :
12
+ matrix :
13
+ julia-version : [1.2.0]
14
+ julia-arch : [x86]
15
+ os : [ubuntu-latest]
10
16
steps :
11
17
- name : Pkg.add("CompatHelper")
12
18
run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
13
19
- name : CompatHelper.main()
14
20
env :
15
21
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
22
+ COMPATHELPER_PRIV : ${{ secrets.TAGBOT }}
16
23
run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change 1
1
name : TagBot
2
2
on :
3
- schedule :
4
- - cron : 0 * * * *
3
+ issue_comment :
4
+ types :
5
+ - created
6
+ workflow_dispatch :
5
7
jobs :
6
8
TagBot :
9
+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
7
10
runs-on : ubuntu-latest
8
11
steps :
9
12
- uses : JuliaRegistries/TagBot@v1
You can’t perform that action at this time.
0 commit comments