Skip to content

Commit

Permalink
Enable PR checks for regular branch builds to test them
Browse files Browse the repository at this point in the history
  • Loading branch information
chippmann committed Oct 10, 2024
1 parent 05c0733 commit 1dd8e3e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/trigger_on_pull_request.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
name: PR Checks
on: [ pull_request ]

# TODO: change again after testing
#on: [ pull_request ]
on:
push:
branches:
- '*' # matches every branch that doesn't contain a '/'
- '*/*' # matches every branch containing a single '/'
- '**' # matches every branch
- '!master' # excludes master

concurrency:
group: ci-${{github.actor}}-${{github.head_ref || github.run_number}}-${{github.ref}}-trigger_on_pull_request
Expand Down

0 comments on commit 1dd8e3e

Please sign in to comment.