Skip to content

Commit

Permalink
Fix yaml (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffFessler authored Feb 25, 2023
1 parent 21e19c7 commit 0a69dc5
Showing 1 changed file with 18 additions and 15 deletions.
33 changes: 18 additions & 15 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
name: CompatHelper
on:
 schedule:
 - cron: '00 00 * * *'
 workflow_dispatch:
jobs:
 CompatHelper:
 runs-on: ubuntu-latest
 steps:
 - name: Pkg.add("CompatHelper")
 run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
 - name: CompatHelper.main()
 env:
 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }}
 run: julia -e 'using CompatHelper; CompatHelper.main()'
on:
schedule:
- cron: 0 0 * * 0 # weekly
workflow_dispatch:
permissions:
contents: write
pull-requests: write
jobs:
CompatHelper:
runs-on: ubuntu-latest
steps:
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }}
run: julia -e 'using CompatHelper; CompatHelper.main()'

0 comments on commit 0a69dc5

Please sign in to comment.