Skip to content

Commit

Permalink
Revert "Run on pull requests only again"
Browse files Browse the repository at this point in the history
This reverts commit 34d6206.
  • Loading branch information
chippmann committed Oct 11, 2024
1 parent 2058153 commit 4de5f7e
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,6 +1,13 @@
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 4de5f7e

Please sign in to comment.