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 4561095 commit 02a52b1Copy full SHA for 02a52b1
.github/workflows/CompatHelper.yml
@@ -1,17 +1,20 @@
1
name: CompatHelper
2
-
3
on:
4
schedule:
5
- - cron: '00 00 * * *'
6
+ - cron: 0 0 * * *
+ workflow_dispatch:
+permissions:
7
+ contents: write
8
+ pull-requests: write
9
jobs:
10
CompatHelper:
11
runs-on: ubuntu-latest
12
steps:
- - uses: julia-actions/setup-julia@latest
13
+ - name: Install Julia, but only if it is not already available in the PATH
14
+ uses: julia-actions/setup-julia@v1
15
with:
- version: 1.3
- - name: Pkg.add("CompatHelper")
16
+ version: 1
17
+ - name: "Install CompatHelper"
18
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
19
- name: CompatHelper.main()
20
env:
0 commit comments