manual workflow in features brach #174939
Answered
by
Aqib121201
Sptakeo4292
asked this question in
Actions
-
Why are you starting this discussion?Question What GitHub Actions topic or product is this about?Workflow Deployment Discussion DetailsHi i add my workflow to the my feature branch but it didn't appear in action tab even i try to check with Git CLI in that it didn't show those manual workflow |
Beta Was this translation helpful? Give feedback.
Answered by
Aqib121201
Sep 27, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Your workflow is in a feature branch. The Actions tab only lists workflows from the default branch. Until the file exists on the default branch it will not show up for manual runs.
Add a manual trigger to the workflow and merge it to the default branch under .github/workflows with a .yml or .yaml extension. Then use Run workflow to choose your feature branch as the ref.
Here is a minimal example you can commit to the default branch.
This appears in the Actions tab once it is on the default branch. You can then pick your…