-
-
Notifications
You must be signed in to change notification settings - Fork 24
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
1 parent
5c66658
commit 3dceaa2
Showing
2 changed files
with
117 additions
and
0 deletions.
There are no files selected for viewing
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,50 @@ | ||
name: 🌐 Add Orgnaisation | ||
description: 🌐 Add a new organisation | ||
title: "🌐 Add new organisation" | ||
labels: ["Status: triage"] | ||
body: | ||
- type: input | ||
attributes: | ||
label: Organisation Name | ||
description: Name of organisation goes here | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Organisation Logo | ||
description: Logo of organisation goes here | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Describe about the organisation | ||
description: A short description of what organisation is about | ||
validations: | ||
required: true | ||
- type: input | ||
attributes: | ||
label: Organisation Github link | ||
description: Github link of organisation goes here | ||
validations: | ||
required: false | ||
- type: input | ||
attributes: | ||
label: Organisation Twitter link | ||
description: Twitter link of organisation goes here | ||
validations: | ||
required: false | ||
- type: input | ||
attributes: | ||
label: Organisation Crunchbase link | ||
description: Crunchbase link of organisation goes here | ||
validations: | ||
required: false | ||
- type: dropdown | ||
attributes: | ||
label: Select in which list organisation is to be added | ||
options: | ||
- "Adopters List" | ||
- "Community List" | ||
- "Sponsors List" | ||
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,67 @@ | ||
name: 🐛 Bug | ||
description: Create a report to help us improve | ||
title: "🐛 Bug" | ||
labels: ["🐛 Bug", "Status: triage"] | ||
body: | ||
- type: textarea | ||
attributes: | ||
label: Describe the bug | ||
description: A clear and concise description of what the bug is | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Steps To Reproduce | ||
description: Steps to reproduce the behavior | ||
placeholder: | | ||
1. Go to'...' | ||
2. Click on'...' | ||
3. Scroll down to'...' | ||
4. See error | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Expected Behavior | ||
description: A clear and concise description of what you expected to happen | ||
validations: | ||
required: true | ||
- type: textarea | ||
attributes: | ||
label: Screenshots | ||
description: | | ||
If applicable, add screenshots to help explain your problem | ||
Tip: You can attach images or log files by clicking this area to highlight it and then dragging files in | ||
validations: | ||
required: false | ||
- type: textarea | ||
attributes: | ||
label: Device Information [optional] | ||
description: | | ||
examples: | ||
- **OS**: Ubuntu 20.04 | ||
- **Browser**: chrome | ||
- **version**: 22 | ||
value: | | ||
- OS: | ||
- Browser: | ||
- version: | ||
render: markdown | ||
validations: | ||
required: false | ||
- type: dropdown | ||
attributes: | ||
label: Are you working on this issue? | ||
options: | ||
- "Yes" | ||
- "No" | ||
validations: | ||
required: true | ||
- type: dropdown | ||
attributes: | ||
label: Do you think this work might require an [Architectural Decision Record (ADR)]? (significant or noteworthy) | ||
options: | ||
- "Yes" | ||
- "No" | ||
validations: | ||
required: true |