Skip to content

Commit 7e5b820

Browse files
authored
Update issue template (#137)
* Update issue template * Address comments #137 (comment) and #137 (comment) * Update ISSUE_TEMPLATE.md * Add workflow to auto label new issues with Needs Review * Update label to 'Needs triage'
1 parent 502299f commit 7e5b820

File tree

2 files changed

+35
-7
lines changed

2 files changed

+35
-7
lines changed

.github/ISSUE_TEMPLATE.md

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,24 @@
1-
* xeus-cookiecutter version:
2-
* Operating System:
1+
# Checklist
2+
Before submitting an issue please confirm you have checked the follow
3+
- [ ] This issue is not a duplicate of one already open
4+
- [ ] The title of the issue is clear
5+
- [ ] This issue is not described in the documentation
36

4-
### Description
7+
# System information
8+
* xeus-cpp version:
9+
* Operating System:
10+
* CPU architecture (x86,arm,etc):
511

6-
Describe what you were trying to get done.
7-
Tell us what happened, what went wrong, and what you expected to happen.
12+
## Description of issue
13+
Please provide a description of the issue (fill out subsequent sections if your issue corresponds to a xeus-cpp not working as expected)
814

9-
### What I Did
15+
### Commands or code executed
1016

1117
```
12-
Paste the command(s) you ran and the output.
18+
Paste the command(s) or code you executed and the output.
1319
If there was a crash, please include the traceback here.
1420
```
21+
22+
### Expected Result
23+
24+
### Any other information you believe is relevant
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Label issues
2+
on:
3+
issues:
4+
types:
5+
- reopened
6+
- opened
7+
jobs:
8+
label_issues:
9+
runs-on: ubuntu-24.04
10+
permissions:
11+
issues: write
12+
steps:
13+
- run: gh issue edit "$NUMBER" --add-label "$LABELS"
14+
env:
15+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16+
GH_REPO: ${{ github.repository }}
17+
NUMBER: ${{ github.event.issue.number }}
18+
LABELS: 'Needs triage'

0 commit comments

Comments
 (0)