Skip to content

Commit

Permalink
Allow Go test Workflow to run on PRs
Browse files Browse the repository at this point in the history
* 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)
  • Loading branch information
dghubble committed Apr 28, 2023
1 parent 8c5d658 commit 9d1c00d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .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

0 comments on commit 9d1c00d

Please sign in to comment.