Attempting to soften the barrier to entry

and also removing issue title formatting that overlaps with label
functionality
main
Dan Buch 2 years ago
parent 7b2e60968b
commit e63054a42e
Signed by: meatballhat
GPG Key ID: A12F782281063434

@ -1,12 +1,10 @@
--- ---
name: ask a question name: ask a question
about: ask us question - assume stackoverflow's guidelines apply here about: ask a question - assume stackoverflow's guidelines apply here
title: 'q: ( your question title goes here )' title: your question title goes here
labels: 'kind/question, status/triage, area/v2' labels: 'kind/question, status/triage, area/v2'
assignees: '' assignees: ''
--- ---
## my question is... my question is...
_**( Put the question text here )**_

@ -1,28 +1,32 @@
--- ---
name: v1 bug report name: v1 bug report
about: Create a report to help us fix v1 bugs about: Create a report to help us fix v1 bugs
title: 'v1 bug: ( your bug title goes here )' title: 'your bug title goes here'
labels: 'kind/bug, status/triage, area/v1' labels: 'kind/bug, status/triage, area/v1'
assignees: '' assignees: ''
--- ---
## my urfave/cli version is ## My urfave/cli version is
_**( Put the version of urfave/cli that you are using here )**_ _**( Put the version of urfave/cli that you are using here )**_
## Checklist ## Checklist
* [ ] Are you running the latest v1 release? The list of releases is [here](https://github.com/urfave/cli/releases). - [ ] Are you running the latest v1 release? The list of releases is [here](https://github.com/urfave/cli/releases).
* [ ] Did you check the manual for your release? The v1 manual is [here](https://github.com/urfave/cli/blob/master/docs/v1/manual.md) - [ ] Did you check the manual for your release? The v1 manual is [here](https://github.com/urfave/cli/blob/master/docs/v1/manual.md).
* [ ] Did you perform a search about this problem? Here's the [Github guide](https://help.github.com/en/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests) about searching. - [ ] Did you perform a search about this problem? Here's the [Github guide](https://help.github.com/en/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests) about searching.
## Dependency Management ## Dependency Management
- [ ] My project is using go modules. <!--
- [ ] My project is using vendoring. Delete any of the following that do not apply:
- [ ] My project is automatically downloading the latest version. -->
- [ ] I am unsure of what my dependency management setup is.
- My project is using go modules.
- My project is using vendoring.
- My project is automatically downloading the latest version.
- I am unsure of what my dependency management setup is.
## Describe the bug ## Describe the bug
@ -34,23 +38,30 @@ Describe the steps or code required to reproduce the behavior
## Observed behavior ## Observed behavior
What did you see happen immediately after the reproduction steps above? What did you see happen immediately after the reproduction steps
above?
## Expected behavior ## Expected behavior
What would you have expected to happen immediately after the reproduction steps above? What would you have expected to happen immediately after the
reproduction steps above?
## Additional context ## Additional context
Add any other context about the problem here. Add any other context about the problem here.
If the issue relates to a specific open source Github repo, please link that repo here. If the issue relates to a specific open source Github repo, please
link that repo here.
If you can reproduce this issue with a public CI system, please link a failing build here. If you can reproduce this issue with a public CI system, please
link a failing build here.
## Want to fix this yourself? ## Want to fix this yourself?
We'd love to have more contributors on this project! If the fix for this bug is easily explained and very small, free free to create a pull request for it. You'll want to base the PR off the `v1` branch, all `v1` bug fix releases will be made from that branch. We'd love to have more contributors on this project! If the fix for
this bug is easily explained and very small, free free to create a
pull request for it. You'll want to base the PR off the `v1`
branch, all `v1` bug fix releases will be made from that branch.
## Run `go version` and paste its output here ## Run `go version` and paste its output here

@ -1,28 +1,32 @@
--- ---
name: v2 bug report name: v2 bug report
about: Create a report to help us fix v2 bugs about: Create a report to help us fix v2 bugs
title: 'v2 bug: ( your bug title goes here )' title: 'your bug title goes here'
labels: 'kind/bug, area/v2, status/triage' labels: 'kind/bug, area/v2, status/triage'
assignees: '' assignees: ''
--- ---
## my urfave/cli version is ## My urfave/cli version is
_**( Put the version of urfave/cli that you are using here )**_ _**( Put the version of urfave/cli that you are using here )**_
## Checklist ## Checklist
* [ ] Are you running the latest v2 release? The list of releases is [here](https://github.com/urfave/cli/releases). - [ ] Are you running the latest v2 release? The list of releases is [here](https://github.com/urfave/cli/releases).
* [ ] Did you check the manual for your release? The v2 manual is [here](https://github.com/urfave/cli/blob/master/docs/v2/manual.md) - [ ] Did you check the manual for your release? The v2 manual is [here](https://github.com/urfave/cli/blob/master/docs/v2/manual.md)
* [ ] Did you perform a search about this problem? Here's the [Github guide](https://help.github.com/en/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests) about searching. - [ ] Did you perform a search about this problem? Here's the [Github guide](https://help.github.com/en/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests) about searching.
## Dependency Management ## Dependency Management
- [ ] My project is using go modules. <!--
- [ ] My project is using vendoring. Delete any of the following that do not apply:
- [ ] My project is automatically downloading the latest version. -->
- [ ] I am unsure of what my dependency management setup is.
- My project is using go modules.
- My project is using vendoring.
- My project is automatically downloading the latest version.
- I am unsure of what my dependency management setup is.
## Describe the bug ## Describe the bug
@ -34,23 +38,30 @@ Describe the steps or code required to reproduce the behavior
## Observed behavior ## Observed behavior
What did you see happen immediately after the reproduction steps above? What did you see happen immediately after the reproduction steps
above?
## Expected behavior ## Expected behavior
What would you have expected to happen immediately after the reproduction steps above? What would you have expected to happen immediately after the
reproduction steps above?
## Additional context ## Additional context
Add any other context about the problem here. Add any other context about the problem here.
If the issue relates to a specific open source Github repo, please link that repo here. If the issue relates to a specific open source Github repo, please
link that repo here.
If you can reproduce this issue with a public CI system, please link a failing build here. If you can reproduce this issue with a public CI system, please
link a failing build here.
## Want to fix this yourself? ## Want to fix this yourself?
We'd love to have more contributors on this project! If the fix for this bug is easily explained and very small, free free to create a pull request for it. We'd love to have more contributors on this project! If the fix for
this bug is easily explained and very small, free free to create a
pull request for it.
## Run `go version` and paste its output here ## Run `go version` and paste its output here
``` ```

@ -1,7 +1,7 @@
--- ---
name: v2 feature request name: v2 feature request
about: Suggest an improvement for v2 about: Suggest an improvement for v2
title: 'v2 feature: ( your feature title goes here )' title: 'your feature title goes here'
labels: 'type/feature, area/v2, status/triage' labels: 'type/feature, area/v2, status/triage'
assignees: '' assignees: ''
@ -10,16 +10,19 @@ assignees: ''
## Checklist ## Checklist
* [ ] Are you running the latest v2 release? The list of releases is [here](https://github.com/urfave/cli/releases). * [ ] Are you running the latest v2 release? The list of releases is [here](https://github.com/urfave/cli/releases).
* [ ] Did you check the manual for your release? The v2 manual is [here](https://github.com/urfave/cli/blob/master/docs/v2/manual.md) * [ ] Did you check the manual for your release? The v2 manual is [here](https://github.com/urfave/cli/blob/master/docs/v2/manual.md).
* [ ] Did you perform a search about this feature? Here's the [Github guide](https://help.github.com/en/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests) about searching. * [ ] Did you perform a search about this feature? Here's the [Github guide](https://help.github.com/en/github/managing-your-work-on-github/using-search-to-filter-issues-and-pull-requests) about searching.
## What problem does this solve? ## What problem does this solve?
A clear and concise description of what problem this feature would solve. For example: A clear and concise description of what problem this feature would solve. For example:
- needing to type out the full flag name takes a long time, so I would like to suggest adding auto-complete - needing to type out the full flag name takes a long time, so I
- I use (osx, windows, linux) and would like support for (some existing feature) to be extended to my platform would like to suggest adding auto-complete
- the terminal output for a particular error case is confusing, and I think it could be improved - I use (osx, windows, linux) and would like support for (some
existing feature) to be extended to my platform
- the terminal output for a particular error case is confusing, and
I think it could be improved
## Solution description ## Solution description
@ -27,4 +30,5 @@ A detailed description of what you want to happen.
## Describe alternatives you've considered ## Describe alternatives you've considered
A clear and concise description of any alternative solutions or features you've considered. A clear and concise description of any alternative solutions or
features you've considered.

@ -8,10 +8,14 @@
_(REQUIRED)_ _(REQUIRED)_
- [ ] bug <!--
- [ ] cleanup Delete any of the following that do not apply:
- [ ] documentation -->
- [ ] feature
- bug
- cleanup
- documentation
- feature
## What this PR does / why we need it: ## What this PR does / why we need it:
@ -28,6 +32,7 @@ _(REQUIRED)_
## Which issue(s) this PR fixes: ## Which issue(s) this PR fixes:
_(REQUIRED)_ _(REQUIRED)_
<!-- <!--
If this PR fixes one of more issues, list them here. If this PR fixes one of more issues, list them here.
One line each, like so: One line each, like so:

Loading…
Cancel
Save