Actually allow this action to run as workflow_dispatch

This commit is contained in:
Jordan Dominion
2024-07-13 12:55:44 -04:00
parent ef28f78c57
commit a2e4582ea0
+1 -1
View File
@@ -10,7 +10,7 @@ on:
jobs:
master-merge:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
if: ${{ github.event_name == 'workflow_dispatch' }} || ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- name: Checkout
uses: actions/checkout@v4