-
Notifications
You must be signed in to change notification settings - Fork 11
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
fa500f1
commit 302241e
Showing
13 changed files
with
458 additions
and
71 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
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,38 @@ | ||
name: "🎨 Design Feedback" | ||
description: Provide feedback on UI/UX design | ||
title: "🎨 [Design] - <title>" | ||
labels: [ | ||
"design" | ||
] | ||
body: | ||
- type: textarea | ||
id: description | ||
validations: | ||
required: true | ||
attributes: | ||
label: Feedback Description | ||
description: | | ||
Provide details about the design aspect you are giving feedback on. | ||
- type: textarea | ||
id: suggestion | ||
validations: | ||
required: false | ||
attributes: | ||
label: Suggested Improvements | ||
description: | | ||
Suggest any changes or improvements you think would enhance the design. | ||
- type: dropdown | ||
id: feedback-type | ||
validations: | ||
required: true | ||
attributes: | ||
label: Feedback Type | ||
description: | | ||
Select the type of feedback. | ||
options: | ||
- Usability | ||
- Visual Design | ||
- Accessibility | ||
- Responsiveness |
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,33 @@ | ||
name: "📚 Documentation Request" | ||
description: Request improvements or additions to the documentation | ||
title: "📚 [Docs] - <title>" | ||
labels: [ | ||
"documentation" | ||
] | ||
body: | ||
- type: textarea | ||
id: area-of-documentation | ||
validations: | ||
required: true | ||
attributes: | ||
label: Area of Documentation | ||
description: | | ||
Describe the specific part of the documentation you want to address. | ||
- type: textarea | ||
id: improvement-details | ||
validations: | ||
required: true | ||
attributes: | ||
label: Details | ||
description: | | ||
Explain the improvements or additions needed in the documentation. | ||
- type: input | ||
id: related-links | ||
validations: | ||
required: false | ||
attributes: | ||
label: Related Links | ||
description: | | ||
Add any links to relevant code, examples, or additional resources. |
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
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: "⚡ Performance Issue" | ||
description: Report a performance issue affecting the system | ||
title: "⚡ [Performance] - <short description>" | ||
labels: [ | ||
"performance" | ||
] | ||
body: | ||
- type: textarea | ||
id: description | ||
validations: | ||
required: true | ||
attributes: | ||
label: Description | ||
description: | | ||
Describe the performance issue, including any symptoms (e.g., slow loading, high memory usage). | ||
- type: textarea | ||
id: steps-to-reproduce | ||
validations: | ||
required: false | ||
attributes: | ||
label: Steps to Reproduce | ||
description: | | ||
If possible, describe how to reproduce the issue. | ||
- type: textarea | ||
id: impact | ||
validations: | ||
required: true | ||
attributes: | ||
label: Impact | ||
description: | | ||
Describe how this issue affects users or the system. | ||
- type: input | ||
id: environment | ||
validations: | ||
required: false | ||
attributes: | ||
label: Environment | ||
description: | | ||
Specify the environment (e.g., OS, app version, hardware) where the issue occurs. | ||
- type: dropdown | ||
id: severity | ||
validations: | ||
required: false | ||
attributes: | ||
label: Severity | ||
description: | | ||
Rate the impact of this performance issue. | ||
options: | ||
- Low | ||
- Medium | ||
- High | ||
- Critical |
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
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,34 @@ | ||
name: First Issue Labeler | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
||
jobs: | ||
first-issue: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
|
||
steps: | ||
- name: Check if first contribution | ||
id: check | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const creator = context.payload.issue.user.login; | ||
const issues = await github.rest.issues.listForRepo({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
creator: creator, | ||
state: 'all' | ||
}); | ||
if (issues.data.length === 1) { | ||
await github.rest.issues.addLabels({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: context.issue.number, | ||
labels: ['good first issue'] | ||
}); | ||
} |
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,36 @@ | ||
name: First PR Labeler | ||
|
||
on: | ||
pull_request: | ||
types: [opened] | ||
|
||
jobs: | ||
first-pr: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
|
||
steps: | ||
- name: Check if first contribution | ||
id: check | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const creator = context.payload.pull_request.user.login; | ||
const pullRequests = await github.rest.pulls.list({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
state: 'all', | ||
per_page: 100 | ||
}); | ||
const creatorPRs = pullRequests.data.filter(pr => pr.user.login === creator); | ||
if (creatorPRs.length === 1) { | ||
await github.rest.issues.addLabels({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
issue_number: context.issue.number, | ||
labels: ['good first PR'] | ||
}); | ||
} |
Oops, something went wrong.