Skip to content

Commit e1d76d7

Browse files
authored
Merge pull request #64 from julia-vscode/julia-pkgbutler-updates
Julia Package Butler Updates
2 parents 25e532a + be3784c commit e1d76d7

6 files changed

+20
-16
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:
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:
@@ -19,22 +21,20 @@ jobs:
1921

2022
steps:
2123
- uses: actions/checkout@v2
22-
- uses: julia-actions/setup-julia@latest
24+
- uses: julia-actions/setup-julia@v1
2325
with:
2426
version: ${{ matrix.julia-version }}
2527
arch: ${{ matrix.julia-arch }}
26-
- uses: julia-actions/julia-buildpkg@latest
28+
- uses: julia-actions/julia-buildpkg@v1
2729
env:
2830
PYTHON: ""
29-
- uses: julia-actions/julia-runtest@latest
31+
- uses: julia-actions/julia-runtest@v1
3032
env:
3133
PYTHON: ""
3234
- uses: julia-actions/julia-processcoverage@v1
33-
- uses: codecov/codecov-action@v1
35+
- uses: codecov/codecov-action@v2
3436
with:
35-
file: ./lcov.info
37+
files: ./lcov.info
3638
flags: unittests
37-
name: codecov-umbrella
38-
fail_ci_if_error: false
3939
token: ${{ secrets.CODECOV_TOKEN }}
4040

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

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

1919
steps:
2020
- uses: actions/checkout@v2
21-
- uses: julia-actions/setup-julia@latest
21+
- uses: julia-actions/setup-julia@v1
2222
with:
2323
version: ${{ matrix.julia-version }}
2424
arch: ${{ matrix.julia-arch }}
25-
- uses: julia-actions/julia-buildpkg@latest
25+
- uses: julia-actions/julia-buildpkg@v1
2626
env:
2727
PYTHON: ""
28-
- uses: julia-actions/julia-runtest@latest
28+
- uses: julia-actions/julia-runtest@v1
2929
env:
3030
PYTHON: ""
3131
- uses: julia-actions/julia-processcoverage@v1
32-
- uses: codecov/codecov-action@v1
32+
- uses: codecov/codecov-action@v2
3333
with:
34-
file: ./lcov.info
34+
files: ./lcov.info
3535
flags: unittests
36-
name: codecov-umbrella
37-
fail_ci_if_error: false
3836
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-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)