doc: issue template: remove reviewers-wanted label on new issues#2501
Conversation
- this label has no practical use on issues - the only practical use of this label is on pull requests, where the reviewed/not reviewed status is clearly visible from the main PR list/page
|
After this, I would like to remove the Then in a second time, I would like to enable
But it can only be enabled when This would also allow enabling |
|
I agree with the label now being redundant from issues, given that only (we) the maintainers only have weight over PRs for the list and issues. it also makes more sense, as we dont have to add the label everytime. It's just going to suck if we are going to lose our metadata updates :/ |
kokomo123
left a comment
There was a problem hiding this comment.
LGTM, no issues here for now per comments above.
I will definitely not change this setting if it breaks the fully automated update. I was just mentioning it for later - I will check if there is a proper solution before touching anything. |
|
Ahhh--gotcha, thank you for clarifying |
I assume this is related to the AI discussion I have seen, but just so I understand it, why? I personally liked it, since it was always a good indicator of when something was actually ready to be merged (not against removing it, just want to understand the reasoning)
That would be a neat feature. Regarding the issue that it breaks the update workflow, I think this can be worked around by using a GitHub App, as they should be able to be added to the "Bypass" section. I haven't tested it, but a quick check of the GitHub Docs suggests it's possible: permissions:
contents: write
steps:
- uses: actions/create-github-app-token@v3.2.0
id: app-token
with:
app-id: ${{ secrets.BOT_APP_ID }}
private-key: ${{ secrets.BOT_APP_PRIVATE_KEY }}
- uses: actions/checkout@v6
with:
token: ${{ steps.app-token.outputs.token }}
persist-credentials: false # Not sure if we need this? The offical docs had it
[Do our shenanigans]
- name: commit and push changes
run: |
git config user.name awesome-selfhosted-bot
git config user.email github-actions@github.com
git add software/ tags/ platforms/ licenses*.yml
git diff-index --quiet HEAD || git commit -m "[bot] update projects metadata"
git pushPS: Congrats kokomo, well earned |
Rabenherz112
left a comment
There was a problem hiding this comment.
this label has no practical use on issues
Agreed
…some-selfhosted#2501) - this label has no practical use on issues - the only practical use of this label is on pull requests, where the reviewed/not reviewed status is clearly visible from the main PR list/page


Uh oh!
There was an error while loading. Please reload this page.