Skip to content

DEV-861-auto-label #1209

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 2 commits into from
Mar 13, 2025
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
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: 'bug'
title: "Bug: "
labels: ["bug", "triage"]
assignees: ''

---
Expand Down
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
---
name: Feature request
about: Suggest an idea for a new feature
title: ''
labels: 'enhancement, awaiting-triage'
title: "FEAT: "
labels: ["enhancement", "triage"]
assignees: ''

---

## Feature Request

### Problem
A clear and concise description how this idea has manifested and the context. Elaborate on the need for this feature and/or what could be improved. Ex. I'm always frustrated when [...]
A clear and concise description how this idea has manifested and the context. Elaborate on the need for this feature. Ex. I'm always frustrated when [...]

### Requirements
A clear and concise description of the requirements to satisfy the new feature. Detail what you expect from a successful implementation of the feature. Ex. When using this feature, it should [...]
Expand Down
46 changes: 46 additions & 0 deletions .github/ISSUE_TEMPLATE/improvement_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
name: Improvement request
about: Suggest an idea for improvement
title: "IMPR: "
labels: ["enhancement", "triage"]
assignees: ''

---

## Improvement Request

### Problem
A clear and concise description how this idea has manifested and the context. Elaborate on the need for what could be improved. Ex. I'm always frustrated when [...]

### Requirements
A clear and concise description of the requirements to satisfy the new improvement. Detail what you expect from a successful implementation of the improvement. Ex. When using this improvement, it should [...]

### Justification
Provide the key benefits in making this a supported improvement. Ex. Adding support for this improvement would ensure [...]

### Alternative Considerations
Do you currently have a work-around for this? Provide any alternative solutions or improvements you've considered.

### Related Errors
Add any errors as a direct result of not exposing this improvement.

Please include steps to reproduce provided errors as follows:
- OS (WIN | MACOS | Linux)
- Python Version OR MATLAB Version
- MySQL Version
- MySQL Deployment Strategy (local-native | local-docker | remote)
- DataJoint Version
- Minimum number of steps to reliably reproduce the issue
- Complete error stack as a result of evaluating the above steps

### Screenshots
If applicable, add screenshots to help explain your improvement.

### Additional Research and Context
Add any additional research or context that was conducted in creating this improvement request.

For example:
- Related GitHub issues and PR's either within this repository or in other relevant repositories.
- Specific links to specific line or focus within source code.
- Relevant summary of Maintainers development meetings, milestones, projects, etc.
- Any additional supplemental web references or links that would further justify this improvement request.
18 changes: 18 additions & 0 deletions .github/workflows/label_issues.yaml
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-latest
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: triage