Skip to content

Commit b07f433

Browse files
authored
Merge pull request #422 from queryverse/julia-pkgbutler-updates
Julia Package Butler Updates
2 parents be42dde + 03c6a36 commit b07f433

7 files changed

+24
-18
lines changed

.github/workflows/jlpkgbutler-butler-workflow.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@ name: Run the Julia Package Butler
33
on:
44
push:
55
branches:
6+
- main
67
- master
78
schedule:
89
- cron: '0 */1 * * *'
10+
workflow_dispatch:
911

1012
jobs:
1113
butler:

.github/workflows/jlpkgbutler-ci-master-workflow.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
name: Run CI on master
1+
name: Run CI on main
22

33
on:
44
push:
55
branches:
6+
- main
67
- master
8+
workflow_dispatch:
79

810
jobs:
911
test:
@@ -20,22 +22,20 @@ jobs:
2022

2123
steps:
2224
- uses: actions/checkout@v2
23-
- uses: julia-actions/setup-julia@latest
25+
- uses: julia-actions/setup-julia@v1
2426
with:
2527
version: ${{ matrix.julia-version }}
2628
arch: ${{ matrix.julia-arch }}
27-
- uses: julia-actions/julia-buildpkg@latest
29+
- uses: julia-actions/julia-buildpkg@v1
2830
env:
2931
PYTHON: ""
30-
- uses: julia-actions/julia-runtest@latest
32+
- uses: julia-actions/julia-runtest@v1
3133
env:
3234
PYTHON: ""
3335
- uses: julia-actions/julia-processcoverage@v1
34-
- uses: codecov/codecov-action@v1
36+
- uses: codecov/codecov-action@v2
3537
with:
36-
file: ./lcov.info
38+
files: ./lcov.info
3739
flags: unittests
38-
name: codecov-umbrella
39-
fail_ci_if_error: false
4040
token: ${{ secrets.CODECOV_TOKEN }}
4141

.github/workflows/jlpkgbutler-ci-pr-workflow.yml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,19 @@ jobs:
1919

2020
steps:
2121
- uses: actions/checkout@v2
22-
- uses: julia-actions/setup-julia@latest
22+
- uses: julia-actions/setup-julia@v1
2323
with:
2424
version: ${{ matrix.julia-version }}
2525
arch: ${{ matrix.julia-arch }}
26-
- uses: julia-actions/julia-buildpkg@latest
26+
- uses: julia-actions/julia-buildpkg@v1
2727
env:
2828
PYTHON: ""
29-
- uses: julia-actions/julia-runtest@latest
29+
- uses: julia-actions/julia-runtest@v1
3030
env:
3131
PYTHON: ""
3232
- uses: julia-actions/julia-processcoverage@v1
33-
- uses: codecov/codecov-action@v1
33+
- uses: codecov/codecov-action@v2
3434
with:
35-
file: ./lcov.info
35+
files: ./lcov.info
3636
flags: unittests
37-
name: codecov-umbrella
38-
fail_ci_if_error: false
3937
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/jlpkgbutler-codeformat-pr-workflow.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ name: Code Formatting
33
on:
44
push:
55
branches:
6+
- main
67
- master
8+
workflow_dispatch:
79

810
jobs:
911
format:

.github/workflows/jlpkgbutler-compathelper-workflow.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ on:
55
- cron: '00 * * * *'
66
issues:
77
types: [opened, reopened]
8+
workflow_dispatch:
89

910
jobs:
10-
compathelper:
11+
CompatHelper:
1112
name: "Run CompatHelper.jl"
1213
runs-on: ubuntu-latest
1314
steps:

.github/workflows/jlpkgbutler-docdeploy-workflow.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,21 @@ name: Deploy documentation
33
on:
44
push:
55
branches:
6+
- main
67
- master
78
tags:
89
- v*
10+
workflow_dispatch:
911

1012
jobs:
1113
docdeploy:
1214
runs-on: ubuntu-latest
1315
steps:
1416
- uses: actions/checkout@v2
15-
- uses: julia-actions/julia-buildpkg@latest
17+
- uses: julia-actions/julia-buildpkg@v1
1618
env:
1719
PYTHON: ""
18-
- uses: julia-actions/julia-docdeploy@releases/v1
20+
- uses: julia-actions/julia-docdeploy@latest
1921
env:
2022
DOCUMENTER_KEY: ${{ secrets.JLPKGBUTLER_TOKEN }}
2123
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/jlpkgbutler-tagbot-workflow.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
types:
55
- created
66
workflow_dispatch:
7+
78
jobs:
89
TagBot:
910
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'

0 commit comments

Comments
 (0)