Skip to content

Commit 718e977

Browse files
committed
Update GA
1 parent 2b45c18 commit 718e977

File tree

2 files changed

+8
-16
lines changed

2 files changed

+8
-16
lines changed

.github/workflows/CompatHelper.yml

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,16 @@
11
name: CompatHelper
2-
32
on:
43
schedule:
5-
- cron: '00 * * * *'
6-
issues:
7-
types: [opened, reopened]
8-
4+
- cron: 0 0 * * *
5+
workflow_dispatch:
96
jobs:
10-
build:
11-
runs-on: ${{ matrix.os }}
12-
strategy:
13-
matrix:
14-
julia-version: [1.2.0]
15-
julia-arch: [x86]
16-
os: [ubuntu-latest]
7+
CompatHelper:
8+
runs-on: ubuntu-latest
179
steps:
18-
- uses: julia-actions/setup-julia@latest
19-
with:
20-
version: ${{ matrix.julia-version }}
2110
- name: Pkg.add("CompatHelper")
2211
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
2312
- name: CompatHelper.main()
2413
env:
2514
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
2616
run: julia -e 'using CompatHelper; CompatHelper.main()'

.github/workflows/TagBot.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
name: TagBot
22
on:
33
schedule:
4-
- cron: 0 * * * *
4+
- cron: 0 0 * * *
5+
workflow_dispatch:
56
jobs:
67
TagBot:
78
runs-on: ubuntu-latest
89
steps:
910
- uses: JuliaRegistries/TagBot@v1
1011
with:
1112
token: ${{ secrets.GITHUB_TOKEN }}
13+
ssh: ${{ secrets.DOCUMENTER_KEY }}

0 commit comments

Comments
 (0)