Skip to content

Commit 6cd5c4a

Browse files
committed
fix: add manual trigger and branch specification for execution workflow
- Add workflow_dispatch for manual testing - Specify branches for workflow_run trigger - Helps ensure execution workflow can be triggered on revamp branch
1 parent 51fa4bb commit 6cd5c4a

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

.github/workflows/sync_docs_execute.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ on:
55
workflows: ["Analyze Documentation Changes"]
66
types:
77
- completed
8+
branches: [main, revamp]
9+
workflow_dispatch:
10+
inputs:
11+
pr_number:
12+
description: 'PR number to process'
13+
required: true
14+
type: string
815

916
permissions:
1017
contents: write

0 commit comments

Comments
 (0)