I can't see Actions workflow list #180990
-
Why are you starting this discussion?Question What GitHub Actions topic or product is this about?Misc Discussion DetailsWhen I click But I did write a few demos:https://github.com/fredsuvn/fs/tree/dev/sunqian/.github/workflows By the way all demos are manually triggered: Is that why I can't see the workflow list? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
|
I have similar question |
Beta Was this translation helpful? Give feedback.
-
|
I see the issue - you're being redirected to the "Get started" page instead of seeing your workflows list. This usually happens when: Quick fixes:
After adding a workflow file, refresh the Actions tab - you should see the workflows list instead of the getting started page. |
Beta Was this translation helpful? Give feedback.


I see the issue - you're being redirected to the "Get started" page instead of seeing your workflows list. This usually happens when:
Quick fixes:
Check if workflows exist in the correct location:
Your workflows should be in
.github/workflows/directory. Even though you have demos insunqian/.github/workflows, make sure they're in the repo you're viewing.Verify Actions is enabled:
Your screenshot shows "Allow all actions and reusable workflows" is selected, which is correct. Click Save if you just changed this setting.
Create a workflow file:
Even with Actions enabled, if there are no
.ymlfiles in.github/workflows/, GitHub shows the getting started page. Add a simple workflow:name…