From 8d7895cc690791d4bda466e1416becf1f48d2ebb Mon Sep 17 00:00:00 2001 From: Oliver Gould Date: Mon, 11 Apr 2022 15:52:00 +0000 Subject: [PATCH] ci: Only run the release workflow on PRs that touch the workflow Signed-off-by: Oliver Gould --- .github/workflows/release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 240aee3cd2..9f0698141b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,7 +1,11 @@ name: release on: - pull_request: {} + pull_request: + paths: + - .github/actions/package/* + - .github/actions/release-tag-meta/* + - .github/workflows/release.yml push: tags: - "release/*"