diff --git a/.github/workflows/ci-py.yml b/.github/workflows/ci-py.yml index d83043c21..fa041b0aa 100644 --- a/.github/workflows/ci-py.yml +++ b/.github/workflows/ci-py.yml @@ -27,7 +27,7 @@ jobs: outputs: python: ${{ github.ref_name == github.event.repository.default_branch || steps.filter.outputs.python }} steps: - # For pull requests it's not necessary to checkout the code + - uses: actions/checkout@v3 - uses: dorny/paths-filter@v3 id: filter with: @@ -78,7 +78,7 @@ jobs: # even if they are skipped due to no changes in the relevant files. required-checks: name: Required checks 🐍 - needs: [check] + needs: [changes, check] if: always() runs-on: ubuntu-latest steps: diff --git a/.github/workflows/ci-rs.yml b/.github/workflows/ci-rs.yml index 4472981ba..3f8176dac 100644 --- a/.github/workflows/ci-rs.yml +++ b/.github/workflows/ci-rs.yml @@ -33,7 +33,7 @@ jobs: outputs: rust: ${{ github.ref_name == github.event.repository.default_branch || steps.filter.outputs.rust }} steps: - # For pull requests it's not necessary to checkout the code + - uses: actions/checkout@v3 - uses: dorny/paths-filter@v3 id: filter with: @@ -133,7 +133,7 @@ jobs: # even if they are skipped due to no changes in the relevant files. required-checks: name: Required checks 🦀 - needs: [check, tests-stable] + needs: [changes, check, tests-stable] if: always() runs-on: ubuntu-latest steps: