Skip to content

Commit

Permalink
Fix workflow triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel Collins committed Feb 22, 2024
1 parent 9ecbbb5 commit 0e18c95
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ name: Test
on:
push:
pull_request:
branches:
# Branches from forks have the form 'user:branch-name' so we only run
# this job on pull_request events for branches that look like fork
# branches. Without this we would end up running this job twice for non
# forked PRs, once for the push and then once for opening the PR.
- "**:**"
release:
types: [published]

jobs:
test:
Expand Down

0 comments on commit 0e18c95

Please sign in to comment.