From d3a5707e9149a7a523f78a390a616c1381507158 Mon Sep 17 00:00:00 2001 From: Sarah French <15078782+SarahFrench@users.noreply.github.com> Date: Fri, 13 Dec 2024 14:24:04 +0000 Subject: [PATCH 1/2] Make Quick Checks be skipped if a PR updates only the CHANGELOG or version/VERSION files --- .github/workflows/checks.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 544777c8a4fe..c99f13264c15 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -22,6 +22,10 @@ on: - ready_for_review - reopened - synchronize + paths-ignore: + # Stop quick checks if the PR contains changes limited to just these files + - 'CHANGELOG.md' + - 'version/VERSION' push: branches: - '*' From ca83bcd84ba08ac22820515b091b8176d1e0f0d4 Mon Sep 17 00:00:00 2001 From: Sarah French Date: Fri, 13 Dec 2024 14:40:17 +0000 Subject: [PATCH 2/2] Skip 'Quick Checks' on push when editing only release-related files --- .github/workflows/checks.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index c99f13264c15..6718385c8965 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -31,6 +31,10 @@ on: - '*' tags: - 'v[0-9]+.[0-9]+.[0-9]+*' + paths-ignore: + # Stop quick checks if the PR contains changes limited to just these files + - 'CHANGELOG.md' + - 'version/VERSION' # This workflow runs for not-yet-reviewed external contributions and so it # intentionally has no write access and only limited read access to the