From c2ab41b3b7b52cd5d0e91034dea299958e096539 Mon Sep 17 00:00:00 2001 From: David Widmann Date: Sun, 24 Oct 2021 12:12:24 +0200 Subject: [PATCH] Fix VersionVigilante action (#543) --- .github/workflows/VersionVigilante_pull_request.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/VersionVigilante_pull_request.yml b/.github/workflows/VersionVigilante_pull_request.yml index e7f8e53ef..41e89b049 100644 --- a/.github/workflows/VersionVigilante_pull_request.yml +++ b/.github/workflows/VersionVigilante_pull_request.yml @@ -11,8 +11,11 @@ jobs: - name: VersionVigilante.main id: versionvigilante_main run: | - julia -e 'using Pkg; Pkg.add("VersionVigilante")' - julia -e 'using VersionVigilante; VersionVigilante.main("https://github.com/${{ github.repository }}")' + using Pkg + Pkg.add("VersionVigilante") + using VersionVigilante + VersionVigilante.main("https://github.com/${{ github.repository }}", master_branch="main") + shell: julia {0} - name: ✅ Un-Labeller (if success) if: (steps.versionvigilante_main.outputs.compare_versions == 'success') && (success() || failure()) continue-on-error: true