From 674ce6f24f9e0e238d3af9fa7a921c8028553553 Mon Sep 17 00:00:00 2001 From: George McCabe <23407799+georgemccabe@users.noreply.github.com> Date: Wed, 19 Jan 2022 09:44:59 -0700 Subject: [PATCH] Per #675, do not trigger workflow on pull request synchronize to avoid many workflow runs when commits are made to fix a PR. Pull requests should be closed and reopened to trigger automated tests --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 94985116c5..47bc73fe5c 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -13,7 +13,7 @@ on: - 'docs/**' pull_request: - types: [opened, reopened, synchronize] + types: [opened, reopened] paths-ignore: - 'docs/**'