-
Notifications
You must be signed in to change notification settings - Fork 59.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ambiguous on:workflow_dispatch statement about "default branch" #35318
Comments
@neongreen Thank you for raising this issue! I'll get this triaged for review ✨ Our team will provide feedback regarding the best next steps for this issue - thanks for your patience! 💛 |
Hi @neongreen 👋 thanks for raising an issue. The best answer I can provide here is that it's true that it's only officially supported by the default branch, and that the reason other branches are visible on the dropdown is to support the case where you may be testing a new workflow, triggered by The conversation in this issue might also be relevant: #34884. The method noted there isn't officially supported. I hope this helps—may I ask if your GitHub plan includes Support? They are best positioned to help with this kind of query in general. |
@subatoi for context — I’m not looking to use this feature. I’m evaluating the security of a CI setup. What I need to know is “can someone potentially run this workflow from a non-default branch, and under what conditions?”. This someone can be an external contributor, for example. When I read “this event will only trigger a workflow run …”, I interpret it as a guarantee: a workflow with this trigger will NEVER run from a non-default branch. The same of course applies to everything else in the documentation. If I read “a nested workflow cannot access secrets”, now I have to wonder if it actually can’t access secrets — or whether it can, just not officially. |
So, just to clarify — in #34884, the author seeks to run a workflow from a non-default branch. GitHub does not want to officially commit to this feature. This is perfectly understandable. In this issue, I didn’t want to run a workflow — I wanted to know if somebody else could. |
Thanks for opening an issue! We've triaged this issue for technical review by a subject matter expert 👀 |
Thanks for the additional context—we'll ask an SME to review this internally, but since our requests are made in the context of the accuracy of the docs, I'm afraid we're unable to guarantee a timeframe for their response. If it's available to you, in this case the faster way to get an answer would be via GitHub Support. |
Code of Conduct
What article on docs.github.com is affected?
https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows#workflow_dispatch
What part(s) of the article would you like to see updated?
The docs say that
workflow_dispatch
will only trigger a workflow run "if the workflow file is on the default branch".However, below it's shown that the user can choose which branch to use:
I'm struggling to interpret the phrasing from the docs. Let's say we have
.github/workflows/deploy.yml
with a triggeron: workflow_dispatch
. The default branch ismain
. Which interpretation is true?a) Only
deploy.yml@main
can ever run. The versions in other branches can never run. The branch selector does nothing.b) If
deploy.yml
exists inmain
, then the user can trigger a version located in any branch. Ifdeploy.yml
does not exist inmain
, the versions in other branches cannot be triggered.c) The user can trigger a version of
deploy.yml
located in any branch. However, if ANOTHER WORKFLOW tries to triggerdeploy.yml
viagh
, API, or by any other means, then this ANOTHER WORKFLOW must be located inmain
.d) ...something else?
Additional information
No response
The text was updated successfully, but these errors were encountered: