Skip to content

Commit 3b9d99e

Browse files
committed
review templates
1 parent 93ad9eb commit 3b9d99e

File tree

6 files changed

+38
-38
lines changed

6 files changed

+38
-38
lines changed
Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 🐞 Bug report
2-
description: File a bug/issue to help us improve
2+
description: Report a bug or documentation issue to help us improve
33
title: "[BUG]"
44
labels: [bug, needs-triage]
55
body:
@@ -8,45 +8,45 @@ body:
88
label: Is there an existing issue for this?
99
description: Please search to see if an issue already exists for the bug you encountered.
1010
options:
11-
- label: I have searched the existing issues
11+
- label: I have searched the existing issues.
1212
required: true
1313
- type: dropdown
1414
id: area
1515
attributes:
16-
label: What type of issue are you facing
17-
description: What type of issue are you facing?
16+
label: Issue Type
17+
description: Choose the type of issue you'd like to report.
1818
options:
19-
- bug report
20-
- documentation issue
19+
- Bug Report
20+
- Documentation Issue
2121
validations:
2222
required: true
2323
- type: textarea
2424
attributes:
25-
label: Describe the bug
26-
description: Provide a clear and concise description of what the bug is.
25+
label: Descripton
26+
description: Provide a clear and concise description of the problem. Describe where it appears, when it occurred, and what it affects.
2727
validations:
2828
required: true
2929
- type: textarea
3030
attributes:
3131
label: Expected Behavior
32-
description: A concise description of what you expected to happen.
32+
description: Describe what you expect to happen.
3333
validations:
3434
required: false
3535
- type: textarea
3636
attributes:
37-
label: Add screenshots to help explain your problem
37+
label: Screenshots
3838
description: |
39-
If applicable, add screenshots to help explain your problem.
39+
Optionally, add screenshots to help explain your problem.
4040
41-
Tip: You can attach images or files by clicking this area to highlight it and then dragging files in.
41+
Tip: To attach images or files, click this area to highlight it and then drag files in.
4242
validations:
4343
required: false
4444
- type: textarea
4545
attributes:
46-
label: Additional context
46+
label: Additional Context
4747
description: |
48-
Add any other context like links or references about the problem here. Anything that will give us more context about the issue you are encountering!
48+
Add any other context, like links or references about the problem. Anything that gives us more context about the issue you are encountering.
4949
50-
Tip: You can attach images or files by clicking this area to highlight it and then dragging files in.
50+
Tip: To attach images or files, click this area to highlight it and then drag files in.
5151
validations:
5252
required: false

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,39 +5,39 @@ labels: [enhancement, pending-decision]
55
body:
66
- type: dropdown
77
attributes:
8-
label: What area do you want to see improved?
9-
description: Specify the main area that you want to see improved.
8+
label: Improvement Area
9+
description: Choose the area that you want to see improved.
1010
options:
11-
- samples
12-
- documentation
13-
- other
11+
- Samples
12+
- Documentation
13+
- Other
1414
validations:
1515
required: true
1616
- type: textarea
1717
id: area
1818
attributes:
19-
label: Is your feature request related to a problem? Please describe.
20-
description: Provide a clear and concise description of what the problem is e.g., I am always frustrated when [...]
19+
label: Is your feature request related to a problem?
20+
description: Provide a clear and concise description of what the problem is. For example, I am always frustrated when ...
2121
validations:
2222
required: true
2323
- type: textarea
2424
attributes:
25-
label: Describe the solution you would like
26-
description: A clear and concise description of what you want to happen.
25+
label: Desired Solution
26+
description: A clear and concise description of the solution you would like to see.
2727
validations:
2828
required: true
2929
- type: textarea
3030
attributes:
31-
label: Describe alternatives you have considered
32-
description: A clear and concise description of any alternative solutions or features you have considered.
31+
label: Alternative Solutions
32+
description: Describe any alternative solutions or features you have considered.
3333
validations:
3434
required: false
3535
- type: textarea
3636
attributes:
37-
label: Additional context
37+
label: Additional Context
3838
description: |
3939
Add any other context like links or references about the problem here. Anything that will give us more context about the issue you are encountering!
4040
41-
Tip: You can attach images or files by clicking this area to highlight it and then dragging files in.
41+
Tip: To attach images or files, click this area to highlight it and then drag files in.
4242
validations:
4343
required: false

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
## Purpose
2-
<!-- Describe the intention of the changes being proposed. What problem does it solve or functionality does it add? -->
2+
<!-- Describe the purpose of the change you are proposing. What problem does it solve or functionality does it add? -->
33
- ...
44

55
## Pull Request Type
66

7-
What kind of change does this Pull Request introduce?
8-
<!-- Please check the one that applies to this PR using "X". -->
7+
What kind of change does this pull request introduce?
8+
<!-- To check the type that applies to this PR, add an "X". -->
99
```
1010
[ ] Bugfix
1111
[ ] Feature
12-
[ ] Refactoring (no functional changes, no api changes)
13-
[ ] Documentation content changes
12+
[ ] Refactoring (no functional changes, no API changes)
13+
[ ] Documentation improvement
1414
[ ] Other... Please describe:
1515
```
1616

.github/workflows/feature-request-response.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
if: ${{ contains(github.event.issue.labels.*.name, 'enhancement') }}
1212
runs-on: ubuntu-latest
1313
steps:
14-
- name: 'Add community note to new Issues'
14+
- name: 'Add community note to new issues'
1515
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
1616
with:
1717
issue-number: ${{ github.event.issue.number }}
@@ -23,7 +23,7 @@ jobs:
2323
### Voting for Prioritization
2424
2525
* Please vote on this issue by adding a 👍 [reaction](https://blog.github.com/2016-03-10-add-reactions-to-pull-requests-issues-and-comments/) to the original post to help the community and maintainers prioritize this request.
26-
* Please **do not** leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request.
26+
* Please **do not** leave "+1" or other comments that do not add relevant new information or questions. They generate extra noise for issue followers and do not help prioritize the request.
2727
2828
### Volunteering to Work on This Issue
2929

.github/workflows/links-watcher-cron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
if: failure()
3939
with:
4040
title: Link Checker Report
41-
# If issue number is empty a new issue gets created
41+
# If issue number is empty, a new issue is created
4242
issue-number: ${{ steps.find_issue.outputs.issue-number }}
4343
content-filepath: ./lychee/out.md
4444
labels: broken link, automated issue

.github/workflows/stale-handling.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
steps:
1414
- uses: actions/stale@v9
1515
with:
16-
stale-issue-message: 'This issue is stale because it has been open 15 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
17-
stale-pr-message: 'This pull request is stale because it has been open 15 days with no activity. Remove stale label or comment or this will be closed in 5 days.'
16+
stale-issue-message: 'This issue is stale because it has been open 15 days with no activity. Remove stale label or comment, or this will be closed in 5 days.'
17+
stale-pr-message: 'This pull request is stale because it has been open 15 days with no activity. Remove stale label or comment, or this will be closed in 5 days.'
1818
close-issue-message: 'This issue was closed because it has been stalled for 5 days with no activity.'
1919
close-pr-message: 'This PR was closed because it has been stalled for 5 days with no activity.'
2020
days-before-stale: 15

0 commit comments

Comments
 (0)