From dd446ed156837f50a06596ec79efc292e856954f Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Mon, 16 May 2022 22:20:59 -0400 Subject: don't double-run github actions for PRs from pycqa/ (#695) --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0c5996f..c10d012 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,10 @@ name: Test -on: [push, pull_request] +on: + pull_request: + push: + branches: [master, main, 'test-me-*'] + tags: ['*'] jobs: build: -- cgit v1.2.1