From 6303b3da5aeaa259f2086853013550850c2da232 Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Thu, 16 Nov 2023 05:11:25 -0500 Subject: [PATCH] Prevent duplicate test runs on new PRs --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9f880a6bb..c40b09460 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -1,11 +1,13 @@ name: tests on: push: + branches: main paths-ignore: - '**.md' - '**.rst' - '**.txt' pull_request: + branches: main paths-ignore: - '**.md' - '**.rst'