Skip to content

Update issue template #137

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 17 additions & 7 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
* xeus-cookiecutter version:
* Operating System:
# Checklist
Before submitting an issue please confirm you have checked the follow
- [ ] This issue is not a duplicate of one already open
- [ ] The title of the issue is clear
- [ ] This issue is not described in the documentation

### Description
# System information
* xeus-cpp version:
* Operating System:
* CPU architecture (x86,arm,etc):

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

### What I Did
### Commands or code executed

```
Paste the command(s) you ran and the output.
Paste the command(s) or code you executed and the output.
If there was a crash, please include the traceback here.
```

### Expected Result

### Any other information you believe is relevant
18 changes: 18 additions & 0 deletions .github/workflows/auto_labeller_new_issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Label issues
on:
issues:
types:
- reopened
- opened
jobs:
label_issues:
runs-on: ubuntu-24.04
permissions:
issues: write
steps:
- run: gh issue edit "$NUMBER" --add-label "$LABELS"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_REPO: ${{ github.repository }}
NUMBER: ${{ github.event.issue.number }}
LABELS: 'Needs triage'