We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb1712c commit 38f1194Copy full SHA for 38f1194
.github/workflows/CompatHelper.yml
@@ -0,0 +1,20 @@
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
+ - uses: julia-actions/setup-julia@latest
12
+ with:
13
+ version: 1.3
14
+ - name: Pkg.add("CompatHelper")
15
+ run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
16
+ - name: CompatHelper.main
17
+ env:
18
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
19
+ run: julia -e 'using CompatHelper; CompatHelper.main(; master_branch = "master")'
20
.github/workflows/TagBot.yml
@@ -0,0 +1,11 @@
+name: TagBot
+ - cron: 0 * * * *
+ TagBot:
+ - uses: JuliaRegistries/TagBot@v1
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments