diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b40f7225..b843cc24 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -127,6 +127,7 @@ jobs: release-dry-run: uses: ./.github/workflows/release-cli.yml + if: github.event_name != 'pull_request' secrets: inherit with: info: | @@ -258,7 +259,7 @@ jobs: if: always() # always run even if dependencies fail runs-on: ubuntu-latest steps: - # fail if ANY dependency has failed or been skipped or cancelled - - if: "contains(needs.*.result, 'failure') || contains(needs.*.result, 'skipped') || contains(needs.*.result, 'cancelled')" + # fail if ANY dependency has failed or cancelled + - if: "contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')" run: exit 1 - run: exit 0