Skip to content

Commit c40bde6

Browse files
authored
Merge pull request #140 from TuringLang/ci
Fix CompatHelper and reduce frequency of TagBot
2 parents 676e06f + ef8b444 commit c40bde6

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,10 @@ jobs:
88
CompatHelper:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: julia-actions/setup-julia@latest
12-
with:
13-
version: 1.3
1411
- name: Pkg.add("CompatHelper")
1512
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
1613
- name: CompatHelper.main()
1714
env:
1815
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19-
run: julia -e 'using CompatHelper; CompatHelper.main()'
16+
COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }}
17+
run: julia -e 'using CompatHelper; CompatHelper.main(; master_branch = "dev")'

.github/workflows/TagBot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: TagBot
22
on:
33
schedule:
4-
- cron: 0 * * * *
4+
- cron: 0 0 * * *
55
jobs:
66
TagBot:
77
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)