-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: feature-request, others templates added (#12)
- Loading branch information
1 parent
95c90e6
commit bd2d75e
Showing
3 changed files
with
77 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,35 @@ | ||
name: Bug report | ||
description: Create a report to help us improve. Report bugs found while using the project | ||
title: "[BUG] <description>" | ||
labels: ["🛠 goal: fix"] | ||
body: | ||
- type: textarea | ||
id: actualbhv | ||
attributes: | ||
label: "🙁 Actual behavior" | ||
description: What happened, and why it was wrong | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: expectedbhv | ||
attributes: | ||
label: "🙂 Expected behavior" | ||
description: What you expected to happen instead, and why | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: steps | ||
attributes: | ||
label: "🔢 Steps to Reproduce the Problem" | ||
description: If possible, provide steps to reproduce the problem you're experiencing | ||
placeholder: | | ||
1. First step | ||
2. Second step | ||
3. Third step | ||
validations: | ||
required: false | ||
- type: markdown | ||
attributes: | ||
value: | | ||
You can also join the Discord community [here](https://thedesignsystems.vercel.app/discord) | ||
Feel free to check out other cool repositories of the The DesignSystems Community [here](https://bit.ly/thedesignsystems-github) |
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,22 @@ | ||
name: Other | ||
description: Use this for any other issues. PLEASE do not create blank issues | ||
title: "[OTHER]" | ||
labels: ["🚦 status: awaiting triage"] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: "# Other issue" | ||
- type: textarea | ||
id: issuedescription | ||
attributes: | ||
label: What would you like to share? | ||
description: Provide a clear and concise explanation of your issue. | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: extrainfo | ||
attributes: | ||
label: Additional information | ||
description: Is there anything else we should know about this issue? | ||
validations: | ||
required: false |
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,20 @@ | ||
name: Import open source standard labels | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
|
||
jobs: | ||
labels: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '14' | ||
- uses: DesignSystemsOSS/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
owner-name: ${{ github.repository_owner }} | ||
repository-name: ${{ github.event.repository.name }} |