diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a8bc69825b..98c03b2569 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -557,8 +557,11 @@ jobs: shell: bash run: | URL="https://api.github.com/repos/${{ github.repository }}/commits/${{ github.sha }}" - if [ -n "$(curl -s -X GET -G $URL | jq -r '.files[].filename' | grep -q "cpanfile")" ]; then - echo MUST_TRIGGER=1 >> $GITHUB_OUTPUT + if [ -n "$(curl -s -X GET -G $URL | jq -r '.files[].filename' | grep 'cpanfile')" ]; then + echo "Setting MUST_TRIGGER to 1" + echo "MUST_TRIGGER=1" >> $GITHUB_OUTPUT + else + echo "MUST_TRIGGER failed; not set" fi - name: Repository Dispatch to the Development image diff --git a/cpanfile b/cpanfile index 243006d2d6..c9286643f1 100644 --- a/cpanfile +++ b/cpanfile @@ -2,7 +2,6 @@ requires 'perl', '5.32.0'; - requires 'Array::PrintCols'; requires 'Archive::Zip'; recommends 'Authen::SASL';