From 2a6a6602dacd7d5df530721575da89f005c33cf7 Mon Sep 17 00:00:00 2001 From: Harmen Stoppels Date: Mon, 5 May 2025 14:12:54 +0200 Subject: [PATCH] [skip-verify-checkums] (#50299) --- .github/workflows/prechecks.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/prechecks.yml b/.github/workflows/prechecks.yml index 958f66e2fea..a751279fcde 100644 --- a/.github/workflows/prechecks.yml +++ b/.github/workflows/prechecks.yml @@ -65,7 +65,11 @@ jobs: python_version: '3.13' verify-checksums: - if: ${{ inputs.with_packages == 'true' }} + # do not run if the commit message or PR description contains [skip-verify-checksums] + if: >- + ${{ inputs.with_packages == 'true' && + !contains(github.event.pull_request.body, '[skip-verify-checksums]') && + !contains(github.event.head_commit.message, '[skip-verify-checksums]') }} runs-on: ubuntu-latest steps: - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29