I have some reusable workflows in a repo. These workflows are useless on their own, they only include the workflow_call
event. However, they still show on the GH UI, and they still try to run.
The workflows in red are the reusable ones which are still being queued/run on push. I realize that I can click each of these reusable workflows and disable them directly, but they would still show up in the sidebar. It seems like I'm missing something here.
Also note that the top 3 workflows are listed using their path instead of their
name
. The workflows which are displayed by theirname
(e.g. "Purge Packages") are formatted in the same way as those which do not show theirname
.
Example of one of these workflows:
name: HTTP Download
on:
workflow_call:
...
jobs:
...
I have some reusable workflows in a repo. These workflows are useless on their own, they only include the workflow_call
event. However, they still show on the GH UI, and they still try to run.
The workflows in red are the reusable ones which are still being queued/run on push. I realize that I can click each of these reusable workflows and disable them directly, but they would still show up in the sidebar. It seems like I'm missing something here.
Also note that the top 3 workflows are listed using their path instead of their
name
. The workflows which are displayed by theirname
(e.g. "Purge Packages") are formatted in the same way as those which do not show theirname
.
Example of one of these workflows:
name: HTTP Download
on:
workflow_call:
...
jobs:
...
Share
Improve this question
asked Feb 8 at 1:55
Josh M.Josh M.
27.8k27 gold badges129 silver badges219 bronze badges
1 Answer
Reset to default 0This is how GitHub Actions currently working, you can't hide the reusable workflows from the UI.
There is a popular feature request about it:
https://github.com/orgs/community/discussions/12025
And this is an issue regarding #2:
https://github.com/maxheld83/ghactions/issues/346