Skip to content

Commit

Permalink
feat: feature-request, others templates added (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
yashsehgal committed Sep 19, 2021
1 parent 95c90e6 commit bd2d75e
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
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)
22 changes: 22 additions & 0 deletions .github/ISSUE_TEMPLATE/other.yml
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
20 changes: 20 additions & 0 deletions .github/workflows/labels.yml
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 }}

0 comments on commit bd2d75e

Please sign in to comment.