Branches list mismatch between the mobile and web app in Actions Workflow #184170
Replies: 4 comments
-
|
This often happens with new branches, especially those created by automation tools or agents. The web list for the workflow_dispatch event relies on the workflow file actually existing on the default branch (usually main) to even show the run button. If the workflow file is present on the default branch, the dropdown list of branches should theoretically show everything, but it can get stale. As a quick workaround, you can try manually typing the branch name in the web UI if it lets you, or stick to the mobile app for now since it is working. If you are comfortable with the command line, you can also trigger the workflow using the GitHub CLI to bypass the UI entirely: gh workflow run <workflow-name> --ref <branch-name>This commands forces the workflow to run on the specific branch you want, ignoring whether the web list has updated or not. |
Beta Was this translation helpful? Give feedback.
-
|
|
Beta Was this translation helpful? Give feedback.
-
|
This usually happens because the two UIs query different sources of truth for branch data. The web Actions UI populates the branch dropdown from refs that exist on the default branch’s remote and that are indexed for workflow_dispatch. If a branch was created very recently (especially by a Copilot agent or automation), it may exist in the repo but not yet be indexed for the workflow UI, so it won’t appear immediately in the web dropdown. The mobile app uses a more direct ref listing from the GitHub API, which is why it often shows newly created branches sooner. This is especially noticeable for: Once a workflow runs on that branch, or a commit is pushed and indexed, the web UI usually catches up and the branch becomes selectable. So this isn’t a Copilot-specific issue — it’s a caching / indexing difference between the web Actions UI and the mobile client. |
Beta Was this translation helpful? Give feedback.
-
|
🕒 Discussion Activity Reminder 🕒 This Discussion has been labeled as dormant by an automated system for having no activity in the last 60 days. Please consider one the following actions: 1️⃣ Close as Out of Date: If the topic is no longer relevant, close the Discussion as 2️⃣ Provide More Information: Share additional details or context — or let the community know if you've found a solution on your own. 3️⃣ Mark a Reply as Answer: If your question has been answered by a reply, mark the most helpful reply as the solution. Note: This dormant notification will only apply to Discussions with the Thank you for helping bring this Discussion to a resolution! 💬 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Why are you starting this discussion?
Question
What GitHub Actions topic or product is this about?
Workflow Deployment
Discussion Details
I’m unable to see recently created branches when manually triggering a GitHub Actions workflow via the web UI. However, those same branches are visible when I trigger the workflow from the GitHub mobile app.
I’m not sure whether this behavior is specific to branches created by Copilot agents, but there does appear to be an inconsistency: the mobile app offers a broader and more up-to-date list of branches compared to the web interface.
Beta Was this translation helpful? Give feedback.
All reactions