File tree Expand file tree Collapse file tree 2 files changed +52
-0
lines changed Expand file tree Collapse file tree 2 files changed +52
-0
lines changed Original file line number Diff line number Diff line change 1+ name : CompatHelper
2+ on :
3+ schedule :
4+ - cron : 0 0 1 * *
5+ workflow_dispatch :
6+ jobs :
7+ CompatHelper :
8+ runs-on : ubuntu-latest
9+ steps :
10+ - name : " Add the General registry via Git"
11+ run : |
12+ import Pkg
13+ ENV["JULIA_PKG_SERVER"] = ""
14+ Pkg.Registry.add("General")
15+ shell : julia --color=yes {0}
16+ - name : " Install CompatHelper"
17+ run : |
18+ import Pkg
19+ name = "CompatHelper"
20+ uuid = "aa819f21-2bde-4658-8897-bab36330d9b7"
21+ version = "3"
22+ Pkg.add(; name, uuid, version)
23+ shell : julia --color=yes {0}
24+ - name : " Run CompatHelper"
25+ run : |
26+ import CompatHelper
27+ CompatHelper.main(;
28+ subdirs=["", joinpath.("lib", readdir("lib"))...]
29+ )
30+ shell : julia --color=yes {0}
31+ env :
32+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
33+ COMPATHELPER_PRIV : ${{ secrets.SSH_KEY }}
Original file line number Diff line number Diff line change 1+ name : TagBot
2+ on :
3+ issue_comment :
4+ types :
5+ - created
6+ workflow_dispatch :
7+ jobs :
8+ TagBot :
9+ if : github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : JuliaRegistries/TagBot@v1
13+ with :
14+ token : ${{ secrets.GITHUB_TOKEN }}
15+ ssh : ${{ secrets.SSH_KEY }}
16+ user : junyuan-chen
17+ email : 37969042+junyuan-chen@users.noreply.github.com
18+ gpg : ${{ secrets.GPG_KEY }}
19+ gpg_password : ${{ secrets.GPG_PASSWORD }}
You can’t perform that action at this time.
0 commit comments