From 9d1c00d3ade47c047fd719a6b863befd4b1c215a Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Fri, 28 Apr 2023 08:35:34 -0700 Subject: [PATCH] Allow Go test Workflow to run on PRs * When GitHub Workflows were refactored to draw from a central repo, the pull_request trigger was lost * Allow the go test/library workflow to be run on PRs from the general public, it doesn't make use of any sensitive materials (but it does count against minutes) --- .github/workflows/test.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index f1261f1..2abc124 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,6 +1,11 @@ name: test on: push: + branches: + - main + pull_request: + branches: + - main jobs: go: uses: dghubble/.github/.github/workflows/golang-library.yaml@main