-
-
Notifications
You must be signed in to change notification settings - Fork 348
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor issue templates to issue forms
- Loading branch information
1 parent
7f1cfc0
commit e4fb543
Showing
4 changed files
with
152 additions
and
68 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,94 @@ | ||
name: Bug report | ||
description: Nice, you found a bug! | ||
title: "Bug: " | ||
labels: ["bug"] | ||
assignees: ["shivammathur"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "Please fill out the sections below to help us address your issue." | ||
|
||
- type: textarea | ||
id: bug-description | ||
attributes: | ||
label: "Describe the bug" | ||
placeholder: "Please describe the bug concisely." | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
id: version | ||
attributes: | ||
label: "Version" | ||
description: "I have checked releases, and the bug exists in the latest patch version of `v1` or `v2`." | ||
options: | ||
- label: "v2" | ||
- label: "v1" | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: runners | ||
attributes: | ||
label: "Runners" | ||
description: "Please choose the GitHub Action runner your workflow uses." | ||
options: | ||
- "GitHub Hosted" | ||
- "Self Hosted" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: operating-systems | ||
attributes: | ||
label: "Operating systems" | ||
placeholder: "e.g., Ubuntu 20.04, Windows Server 2019, etc." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: php-versions | ||
attributes: | ||
label: "PHP versions" | ||
placeholder: "e.g., PHP 7.4, PHP 8.0, etc." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: "To Reproduce" | ||
placeholder: "Please provide the relevant steps of your workflow `.yml` file." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: "Expected behavior" | ||
placeholder: "A clear and concise description of what you expected to happen." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: screenshots-logs | ||
attributes: | ||
label: "Screenshots/Logs" | ||
placeholder: "Drag and drop images or paste logs here..." | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: "Additional context" | ||
placeholder: "Add any other context about the problem here." | ||
|
||
- type: dropdown | ||
id: willing-to-submit-pr | ||
attributes: | ||
label: "Are you willing to submit a PR?" | ||
description: "We accept pull requests targeting the develop branch." | ||
options: | ||
- "Yes" | ||
- "No" | ||
validations: | ||
required: true |
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,58 @@ | ||
name: Feature request | ||
description: Suggest a new feature | ||
title: "Feature: " | ||
labels: ["enhancement"] | ||
assignees: ["shivammathur"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "Please fill out the sections below to help us understand your new feature proposal." | ||
|
||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: "Describe the feature" | ||
placeholder: "A clear and concise description of what you want and why." | ||
validations: | ||
required: true | ||
|
||
- type: checkboxes | ||
id: version-check | ||
attributes: | ||
label: "Please check the latest release" | ||
options: | ||
- label: "I have checked releases, and the feature is missing in the latest patch version of `v2`." | ||
required: true | ||
|
||
- type: textarea | ||
id: underlying-issue | ||
attributes: | ||
label: "Underlying issue" | ||
placeholder: "Please describe the issue this would solve." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: alternatives | ||
attributes: | ||
label: "Describe alternatives" | ||
placeholder: "Please mention any alternative solutions you've considered." | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: "Additional context" | ||
placeholder: "Drag and drop images or paste any additional information here..." | ||
|
||
- type: dropdown | ||
id: willing-to-submit-pr | ||
attributes: | ||
label: "Are you willing to submit a PR?" | ||
description: "We accept pull requests targeting the develop branch." | ||
options: | ||
- "Yes" | ||
- "No" | ||
validations: | ||
required: true |