File tree 2 files changed +33
-0
lines changed
2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : CompatHelper
2
+
3
+ on :
4
+ schedule :
5
+ - cron : ' 00 00 * * *'
6
+
7
+ jobs :
8
+ CompatHelper :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Pkg.add("CompatHelper")
12
+ run : julia -e 'using Pkg; Pkg.add("CompatHelper")'
13
+ - name : CompatHelper.main()
14
+ env :
15
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
16
+ run : julia -e 'using CompatHelper; CompatHelper.main()'
Original file line number Diff line number Diff line change
1
+ name : TagBot
2
+ on :
3
+ issue_comment : # THIS BIT IS NEW
4
+ types :
5
+ - created
6
+ workflow_dispatch :
7
+ jobs :
8
+ TagBot :
9
+ # THIS 'if' LINE IS NEW
10
+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
11
+ # NOTHING BELOW HAS CHANGED
12
+ runs-on : ubuntu-latest
13
+ steps :
14
+ - uses : JuliaRegistries/TagBot@v1
15
+ with :
16
+ token : ${{ secrets.GITHUB_TOKEN }}
17
+ ssh : ${{ secrets.DOCUMENTER_KEY }}
You can’t perform that action at this time.
0 commit comments