Skip to content

Commit 23a8913

Browse files
committed
update compathelper and tagbot
1 parent 5849410 commit 23a8913

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,21 @@ name: CompatHelper
33
on:
44
schedule:
55
- cron: '00 00 * * *'
6+
workflow_dispatch:
67

78
jobs:
89
CompatHelper:
9-
runs-on: ubuntu-latest
10+
runs-on: ${{ matrix.os }}
11+
strategy:
12+
matrix:
13+
julia-version: [1.2.0]
14+
julia-arch: [x86]
15+
os: [ubuntu-latest]
1016
steps:
1117
- name: Pkg.add("CompatHelper")
1218
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
1319
- name: CompatHelper.main()
1420
env:
1521
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
22+
COMPATHELPER_PRIV: ${{ secrets.TAGBOT }}
1623
run: julia -e 'using CompatHelper; CompatHelper.main()'

.github/workflows/TagBot.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: 0 * * * *
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
57
jobs:
68
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
710
runs-on: ubuntu-latest
811
steps:
912
- uses: JuliaRegistries/TagBot@v1

0 commit comments

Comments
 (0)