-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
112 additions
and
91 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,56 @@ | ||
name: Addition | ||
description: 🆕 Suggest something to be added to the list | ||
title: '[ADDITION] <title>' | ||
labels: ['Suggested Addition', 'Awaiting Review'] | ||
assignees: | ||
- lissy93 | ||
body: | ||
# Location | ||
- type: input | ||
id: location | ||
attributes: | ||
label: Location | ||
description: >- | ||
Indicate which section (and if applicable sub-section) the addition should be made | ||
placeholder: | ||
validations: | ||
required: true | ||
|
||
# Addition Info | ||
- type: textarea | ||
id: addition | ||
attributes: | ||
label: Addition | ||
description: | | ||
Please describe what should be added | ||
Where applicable, provide links to reputable sources to back up any info | ||
placeholder: | ||
validations: | ||
required: true | ||
|
||
# Can user submit PR | ||
- type: dropdown | ||
id: canImplement | ||
attributes: | ||
label: Would you like to submit a PR? | ||
description: Is this addition something that you are willing to submit a pull request for? | ||
options: | ||
- 'No' | ||
- 'Maybe' | ||
- 'Yes' | ||
validations: | ||
required: false | ||
|
||
|
||
# Confirmation checkboxes | ||
- type: checkboxes | ||
id: idiot-check | ||
attributes: | ||
label: Please tick the boxes | ||
options: | ||
- label: To the best of my knowledge, the information I've provided is correct | ||
required: true | ||
- label: I have checked that a similar ticket has not previously been opened | ||
required: true | ||
- label: I agree to the repositories [Code of Conduct](https://github.com/Lissy93/personal-security-checklist/blob/master/.github/CODE_OF_CONDUCT.md) | ||
required: true |
This file was deleted.
Oops, something went wrong.
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,56 @@ | ||
name: Removal | ||
description: ❌ Suggest something that should be removed from the list | ||
title: '[REMOVAL] <title>' | ||
labels: ['Suggested Removal', 'Awaiting Review'] | ||
assignees: | ||
- lissy93 | ||
body: | ||
# Location | ||
- type: input | ||
id: location | ||
attributes: | ||
label: What should be removed? | ||
description: >- | ||
Indicate which point, and from which section you are referring to | ||
placeholder: | ||
validations: | ||
required: true | ||
|
||
# Removal description | ||
- type: textarea | ||
id: removal | ||
attributes: | ||
label: Justification | ||
description: | | ||
Describe why this should be removed | ||
Where applicable, provide links to reputable sources to back up any info | ||
placeholder: | ||
validations: | ||
required: true | ||
|
||
# Can user submit PR | ||
- type: dropdown | ||
id: canImplement | ||
attributes: | ||
label: Would you like to submit a PR? | ||
description: Is this removal something that you are willing to submit a pull request for? | ||
options: | ||
- 'No' | ||
- 'Maybe' | ||
- 'Yes' | ||
validations: | ||
required: false | ||
|
||
# Confirmation checkboxes | ||
- type: checkboxes | ||
id: idiot-check | ||
attributes: | ||
label: Please tick the boxes | ||
options: | ||
- label: To the best of my knowledge, the information I've provided is correct | ||
required: true | ||
- label: I have checked that a similar ticket has not previously been opened | ||
required: true | ||
- label: I agree to the repositories [Code of Conduct](https://github.com/Lissy93/personal-security-checklist/blob/master/.github/CODE_OF_CONDUCT.md) | ||
required: true | ||
|