From ffc6b7b102f2327bafc5bb78c0a46913a6290a66 Mon Sep 17 00:00:00 2001 From: Peter Tripp Date: Thu, 16 Jan 2025 12:09:54 -0500 Subject: [PATCH] Make docs-only PRs skip CI.yml test suite (15 secs instead of 15 minutes) (#23246) These were previously in place, but removed while we evaluated Merge Queues (since reverted). --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d58a1f8a34..9f55958803 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,9 +7,16 @@ on: - "v[0-9]+.[0-9]+.x" tags: - "v*" + paths-ignore: + - "docs/**/*" + - ".github/workflows/community_*" + pull_request: branches: - "**" + paths-ignore: + - "docs/**/*" + - ".github/workflows/community_*" concurrency: # Allow only one workflow per any non-`main` branch.