Skip to content

Commit

Permalink
Enable on regular branches for now
Browse files Browse the repository at this point in the history
  • Loading branch information
chippmann committed Oct 12, 2024
1 parent 3ed8802 commit 306b62c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/trigger_on_pull_request.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
name: PR Checks
on: [ pull_request ]
#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 306b62c

Please sign in to comment.