Skip to content

Commit c2ab41b

Browse files
authored
Fix VersionVigilante action (#543)
1 parent a6c9ade commit c2ab41b

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/VersionVigilante_pull_request.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,11 @@ jobs:
1111
- name: VersionVigilante.main
1212
id: versionvigilante_main
1313
run: |
14-
julia -e 'using Pkg; Pkg.add("VersionVigilante")'
15-
julia -e 'using VersionVigilante; VersionVigilante.main("https://github.com/${{ github.repository }}")'
14+
using Pkg
15+
Pkg.add("VersionVigilante")
16+
using VersionVigilante
17+
VersionVigilante.main("https://github.com/${{ github.repository }}", master_branch="main")
18+
shell: julia {0}
1619
- name: ✅ Un-Labeller (if success)
1720
if: (steps.versionvigilante_main.outputs.compare_versions == 'success') && (success() || failure())
1821
continue-on-error: true

0 commit comments

Comments
 (0)