Issue forms dropdown field with options sourced from the list of tags in the repository #4299
Unanswered
Tyrrrz
asked this question in
Projects and Issues
Replies: 3 comments 4 replies
|
+1 |
2 replies
|
I would love to have this ability too! There are mostly 2 things I need:
The idea of a
|
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Hello!
I'm using GitHub Issue Forms and I have a field called "Version" which the users fill out to indicate which particular version of the software is affected by a bug they are reporting. Right now it's a
type: inputkind of field, but some people end up writing "latest" or similar things instead of putting the actual version there. I want to avoid that.I want to make it a
type: dropdownfield, but that adds a bit of difficulty when it comes to populating the list of versions as options. All versions on my repo correspond to git tags, so I could write a GitHub Action to do that for me, but I'm not too keen on having to edit the template YAML file and commit it through an action like that. 🙃It would be great if you could somehow use the list of tags on a repository as a list of options on an input.
All reactions