diff --git a/.github/workflows/PR-wip-checks.yaml b/.github/workflows/PR-wip-checks.yaml index 4f277d7688..3b13b31605 100644 --- a/.github/workflows/PR-wip-checks.yaml +++ b/.github/workflows/PR-wip-checks.yaml @@ -22,7 +22,6 @@ jobs: name: WIP Check steps: - name: WIP Check - if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} uses: tim-actions/wip-check@1c2a1ca6c110026b3e2297bb2ef39e1747b5a755 # master (2021-06-10) with: labels: '["do-not-merge", "wip", "rfc"]' diff --git a/.github/workflows/cargo-deny-runner.yaml b/.github/workflows/cargo-deny-runner.yaml index a75db26650..024eedd57c 100644 --- a/.github/workflows/cargo-deny-runner.yaml +++ b/.github/workflows/cargo-deny-runner.yaml @@ -20,16 +20,13 @@ jobs: steps: - name: Checkout Code - if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: persist-credentials: false - name: Generate Action - if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} run: bash cargo-deny-generator.sh working-directory: ./.github/cargo-deny-composite-action/ env: GOPATH: ${{ github.workspace }}/kata-containers - name: Run Action - if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} uses: ./.github/cargo-deny-composite-action diff --git a/.github/workflows/commit-message-check.yaml b/.github/workflows/commit-message-check.yaml index dfee61a9b6..2f55290d26 100644 --- a/.github/workflows/commit-message-check.yaml +++ b/.github/workflows/commit-message-check.yaml @@ -27,7 +27,6 @@ jobs: name: Commit Message Check steps: - name: Get PR Commits - if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} id: 'get-pr-commits' uses: tim-actions/get-pr-commits@c64db31d359214d244884dd68f971a110b29ab83 # v1.2.0 with: @@ -43,19 +42,18 @@ jobs: filter_out_pattern: '^Revert "|^Reapply "' - name: DCO Check - if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') }} uses: tim-actions/dco@2fd0504dc0d27b33f542867c300c60840c6dcb20 # master (2020-04-28) with: commits: ${{ steps.get-pr-commits.outputs.commits }} - name: Commit Body Missing Check - if: ${{ !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') && ( success() || failure() ) }} + if: ${{ success() || failure() }} uses: tim-actions/commit-body-check@d2e0e8e1f0332b3281c98867c42a2fbe25ad3f15 # v1.0.2 with: commits: ${{ steps.get-pr-commits.outputs.commits }} - name: Check Subject Line Length - if: ${{ (env.PR_AUTHOR != 'dependabot[bot]') && !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') && ( success() || failure() ) }} + if: ${{ (env.PR_AUTHOR != 'dependabot[bot]') && ( success() || failure() ) }} uses: tim-actions/commit-message-checker-with-regex@d6d9770051dd6460679d1cab1dcaa8cffc5c2bbd # v0.3.1 with: commits: ${{ steps.get-pr-commits.outputs.commits }} @@ -64,7 +62,7 @@ jobs: post_error: ${{ env.error_msg }} - name: Check Body Line Length - if: ${{ (env.PR_AUTHOR != 'dependabot[bot]') && !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') && ( success() || failure() ) }} + if: ${{ (env.PR_AUTHOR != 'dependabot[bot]') && ( success() || failure() ) }} uses: tim-actions/commit-message-checker-with-regex@d6d9770051dd6460679d1cab1dcaa8cffc5c2bbd # v0.3.1 with: commits: ${{ steps.get-pr-commits.outputs.commits }} @@ -95,7 +93,7 @@ jobs: post_error: ${{ env.error_msg }} - name: Check Subsystem - if: ${{ (env.PR_AUTHOR != 'dependabot[bot]') && !contains(github.event.pull_request.labels.*.name, 'force-skip-ci') && ( success() || failure() ) }} + if: ${{ (env.PR_AUTHOR != 'dependabot[bot]') && ( success() || failure() ) }} uses: tim-actions/commit-message-checker-with-regex@d6d9770051dd6460679d1cab1dcaa8cffc5c2bbd # v0.3.1 with: commits: ${{ steps.get-pr-commits.outputs.commits }}