From 306b62c98bf09e89f0e777becf26417264f550bd Mon Sep 17 00:00:00 2001 From: chippmann Date: Sat, 12 Oct 2024 17:16:53 +0200 Subject: [PATCH] Enable on regular branches for now --- .github/workflows/trigger_on_pull_request.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/trigger_on_pull_request.yml b/.github/workflows/trigger_on_pull_request.yml index a2bac625be..4288030d64 100644 --- a/.github/workflows/trigger_on_pull_request.yml +++ b/.github/workflows/trigger_on_pull_request.yml @@ -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