Skip to content

Commit

Permalink
Add CompatHelper and reduce frequency of TagBot to once per day
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed May 31, 2020
1 parent 1e12379 commit 1bfac8a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: CompatHelper
on:
schedule:
- cron: 31 15 * * *
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Pkg.add("CompatHelper")
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
- name: CompatHelper.main()
run: julia -e 'using CompatHelper; CompatHelper.main()'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: TagBot
on:
schedule:
- cron: 0 * * * *
- cron: 27 15 * * *
jobs:
TagBot:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1bfac8a

Please sign in to comment.