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 685dd17 commit 0125910Copy full SHA for 0125910
.github/workflows/CompatHelper.yml
@@ -0,0 +1,24 @@
1
+name: CompatHelper
2
+
3
+on:
4
+ schedule:
5
+ - cron: '00 00 * * *'
6
+ issues:
7
+ types: [opened, reopened]
8
+ push:
9
+ branches:
10
+ - actions/trigger/CompatHelper
11
12
+jobs:
13
+ CompatHelper:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: julia-actions/setup-julia@latest
17
+ with:
18
+ version: 1.3
19
+ - name: Pkg.add("CompatHelper")
20
+ run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
21
+ - name: CompatHelper.main()
22
+ env:
23
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24
+ run: julia -e 'using CompatHelper; CompatHelper.main()'
0 commit comments