From 41db60d07ccfde77ac2b3dc0c05f37c202c7a60e Mon Sep 17 00:00:00 2001 From: Thad Guidry Date: Thu, 28 Jan 2021 06:42:00 -0600 Subject: [PATCH] Prevent snapshot release when only docs push (#3527) I "think" this is the right way to handle this to prevent unnecessary workflow runs such as this one: https://github.com/OpenRefine/OpenRefine/actions/runs/515619980 when only a PR for docs is merged into master branch. --- .github/workflows/snapshot_release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/snapshot_release.yml b/.github/workflows/snapshot_release.yml index 4109f1a4c..2c1f546bd 100644 --- a/.github/workflows/snapshot_release.yml +++ b/.github/workflows/snapshot_release.yml @@ -4,6 +4,8 @@ on: push: branches: - master + paths: + - '!docs/**' jobs: ui_tests: