Run master merge on master pushes

This commit is contained in:
Jordan Dominion
2024-07-13 20:55:12 -04:00
parent df710a5603
commit 3133a60033
+3 -5
View File
@@ -1,10 +1,9 @@
name: 'Master Merge'
on:
workflow_run:
workflows: [CI Pipeline]
types:
- completed
push:
branches:
- master
workflow_dispatch:
env:
@@ -13,7 +12,6 @@ env:
jobs:
master-merge:
runs-on: ubuntu-latest
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success')
steps:
- name: Checkout
uses: actions/checkout@v4