From 8c81efa44c82debfad5cbd61fde671350beced49 Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Thu, 18 Jun 2020 13:49:47 -0400 Subject: [PATCH 1/2] Trigger main workflow on _all_ push and pull_request events because the safelisting style does not appear to work as expected --- .github/workflows/main.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6c1d29cb..9a7efd49 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,10 +1,5 @@ name: main -on: - push: - branches: [master] - tags: [".*"] - pull_request: - branches: [master] +on: [push, pull_request] jobs: test: strategy: From 08aabc29e01484c68c656f564ce0b20e7a54a4bf Mon Sep 17 00:00:00 2001 From: Dan Buch Date: Thu, 18 Jun 2020 13:53:05 -0400 Subject: [PATCH 2/2] Try a different tag glob matcher --- .github/workflows/main.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9a7efd49..ef4b62c6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,5 +1,10 @@ name: main -on: [push, pull_request] +on: + push: + branches: [master] + tags: ['*'] + pull_request: + branches: [master] jobs: test: strategy: