-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new Issue Templates and Release yamls
- Loading branch information
Showing
7 changed files
with
237 additions
and
32 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
name: 🐞 Bug Report | ||
description: Create a report to help us improve | ||
labels: ["bug", "triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Note: the following is not mandatory, just a guideline. Feel free to describe your bug report or suggestion in another way. | ||
- type: textarea | ||
id: background | ||
attributes: | ||
label: Description | ||
description: Please provide a succinct description of your issue. | ||
placeholder: Description | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: known-workarounds | ||
attributes: | ||
label: Known Workarounds | ||
description: Please provide a description of any known workarounds. | ||
placeholder: Known Workarounds | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
description: Provide a description of the expected behavior. | ||
placeholder: Expected behavior | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: actual-behavior | ||
attributes: | ||
label: Actual behavior | ||
description: | | ||
Provide a description of the actual behavior observed. If applicable please include any error messages or exception stack-traces. | ||
placeholder: Actual behavior | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: configuration | ||
attributes: | ||
label: Configuration | ||
description: | | ||
Please provide more information on your .NET configuration: | ||
* Operating system | ||
* Branch/Version | ||
* .NET Runtime, CoreCLR or Mono Version | ||
* Performance information, links to performance testing scripts | ||
placeholder: Configuration | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: repro-steps | ||
attributes: | ||
label: Reproduction Steps | ||
description: | | ||
Please include minimal steps to reproduce the problem if possible. E.g.: the smallest possible code snippet; or a small project, with steps to run it. | ||
Always include text as text rather than screenshots so code can easily be copied and will show up in searches. | ||
Stack Overflow has a great article about [how to create a minimal, reproducible example](https://stackoverflow.com/help/minimal-reproducible-example). | ||
placeholder: Minimal Reproduction | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: pull-request | ||
attributes: | ||
label: Are you willing to help with a pull-request? | ||
description: | | ||
Make sure you have read the sections about [contributing changes](https://github.com/fsprojects/FSharpPlus/blob/master/DEVELOPER_GUIDE.md) and [design guidelines](https://github.com/fsprojects/FSharpPlus/blob/master/DESIGN_GUIDELINES.md). | ||
options: | ||
- "No" | ||
- "Yes, please assign this issue to me." | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
name: 💡 API Suggestion | ||
description: Propose a change to the public API surface | ||
title: "[API Proposal]: " | ||
labels: [api-suggestion] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
We welcome API proposals! We have a process to evaluate the value and shape of new API. This template will help us gather the information we need to start the review process. | ||
- type: textarea | ||
id: background | ||
attributes: | ||
label: Background and motivation | ||
description: Please describe the purpose and value of the new API here. | ||
placeholder: Purpose | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: api-proposal | ||
attributes: | ||
label: API Proposal | ||
description: | | ||
Please provide the specific public API signature diff that you are proposing. | ||
placeholder: API declaration (no function bodies) | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: api-usage | ||
attributes: | ||
label: API Usage | ||
description: | | ||
Please provide code examples that highlight how the proposed API additions are meant to be consumed. This will help suggest whether the API has the right shape to be functional, performant and usable. | ||
placeholder: API usage | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternative-designs | ||
attributes: | ||
label: Alternative Designs | ||
description: | | ||
Please provide alternative designs. This might not be APIs; for example instead of providing new APIs an option might be to change the behavior of an existing API. | ||
placeholder: Alternative designs | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: risks | ||
attributes: | ||
label: Risks | ||
description: | | ||
Please mention any risks that to your knowledge the API proposal might entail, such as breaking changes, performance regressions, etc. | ||
placeholder: Risks | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: pull-request | ||
attributes: | ||
label: Are you willing to help with a proof-of-concept (as PR in that or a separate repo) first and as pull-request later on? | ||
description: | | ||
This is mainly to help demonstrate your suggestion. | ||
Make sure you have read the sections about [contributing changes](https://github.com/fsprojects/FSharpPlus/blob/master/DEVELOPER_GUIDE.md) and [design guidelines](https://github.com/fsprojects/FSharpPlus/blob/master/DESIGN_GUIDELINES.md). | ||
Beware we might not accept the PR as is, but it will help us understand your suggestion better. | ||
options: | ||
- "No" | ||
- "Yes, please assign this issue to me." | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: 💡 General feature (not including API proposals) | ||
description: Discuss a new feature that does not change the public API surface | ||
title: "[Feature]: " | ||
labels: [feature, triage] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
You have an idea for a new feature? Cool, let's discuss it. | ||
- type: textarea | ||
id: background | ||
attributes: | ||
label: Background and motivation | ||
description: Please describe the purpose of the new feature. | ||
placeholder: Purpose | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: alternative-concerns | ||
attributes: | ||
label: Alternative Concerns | ||
description: | | ||
Please provide alternatives you have thought about. | ||
placeholder: Alternative designs | ||
validations: | ||
required: false | ||
- type: dropdown | ||
id: pull-request | ||
attributes: | ||
label: Are you willing help with a pull-request? | ||
description: | | ||
Make sure you have read the sections about [contributing changes](https://github.com/fsprojects/FSharpPlus/blob/master/DEVELOPER_GUIDE.md) and [design guidelines](https://github.com/fsprojects/FSharpPlus/blob/master/DESIGN_GUIDELINES.md). | ||
Beware we might not accept the PR as is, but it will help us understand your suggestion better. | ||
options: | ||
- "No" | ||
- "Yes, please assign this issue to me." | ||
validations: | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
blank_issues_enabled: true | ||
contact_links: | ||
- name: 📚 Documentation | ||
url: https://fsprojects.github.io/FSharpPlus/ | ||
about: Read our documentation. | ||
- name: 💬 Ask on Stack Overflow | ||
url: https://stackoverflow.com/questions/tagged/f%23%2b | ||
about: The best place for asking general purpose questions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
changelog: | ||
exclude: | ||
labels: | ||
- changelog-ignore | ||
authors: [ ] | ||
categories: | ||
- title: Breaking Changes | ||
labels: | ||
- "breaking change" | ||
- title: New features | ||
labels: | ||
- "feature" | ||
- "add" | ||
- title: Improvements | ||
labels: | ||
- "enhancement" | ||
- "performance" | ||
- title: Fixes | ||
labels: | ||
- "bug" | ||
- "regression" | ||
- "fix" | ||
- title: Documentation | ||
labels: | ||
- "documentation" | ||
- title: Others | ||
labels: | ||
- "*" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters