Add workflow_dispatch to all relevant workflows#272
Merged
knoepfel merged 1 commit intoFramework-R-D:mainfrom Feb 2, 2026
Merged
Conversation
This change adds a `workflow_dispatch` trigger to all relevant workflows, allowing them to be run manually on a specific branch. For each workflow, a `ref` input has been added to the `workflow_dispatch` trigger to specify the branch, tag, or SHA to checkout. The checkout steps have been updated to use this input when the workflow is manually triggered. For the "fix" workflows, the jobs have been refactored to handle both `issue_comment` and `workflow_dispatch` triggers, ensuring the correct branch is checked out and modified in either case. The relevance checks in the "check" workflows are now bypassed when the workflow is triggered manually. The `REUSABLE_WORKFLOWS.md` documentation has been updated to include instructions for using the new `workflow_dispatch` triggers. Co-authored-by: greenc-FNAL <2372949+greenc-FNAL@users.noreply.github.com>
effa79c to
334d21e
Compare
knoepfel
approved these changes
Feb 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This change adds a
workflow_dispatchtrigger to all relevant workflows, allowing them to be run manually on a specific branch.For each workflow, a
refinput has been added to theworkflow_dispatchtrigger to specify the branch, tag, or SHA to checkout. The checkout steps have been updated to use this input when the workflow is manually triggered.For the "fix" workflows, the jobs have been refactored to handle both
issue_commentandworkflow_dispatchtriggers, ensuring the correct branch is checked out and modified in either case.The relevance checks in the "check" workflows are now bypassed when the workflow is triggered manually.
The
REUSABLE_WORKFLOWS.mddocumentation has been updated to include instructions for using the newworkflow_dispatchtriggers.Co-authored-by: greenc-FNAL 2372949+greenc-FNAL@users.noreply.github.com