Introduce Task issue type with label automation and enhanced contribution templates#78
Merged
Hackshaven merged 5 commits intomainfrom Aug 24, 2025
Merged
Introduce Task issue type with label automation and enhanced contribution templates#78Hackshaven merged 5 commits intomainfrom
Hackshaven merged 5 commits intomainfrom
Conversation
… type; enhance contributing guidelines for maintenance work
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…or-remedialmaintenance-work 76 add new task issue template for remedialmaintenance work
Contributor
There was a problem hiding this comment.
Pull Request Overview
This pull request introduces a structured approach to tracking maintenance tasks and improves the repository's issue/PR workflow management. It adds a new "Task" issue type for non-functional work like refactoring and CI maintenance, alongside automated label management and enhanced templates.
- Added new Task issue template and workflow for tracking maintenance/remedial work
- Implemented automated label synchronization using GitHub Actions
- Enhanced PR templates with better categorization and validation checklists
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
pyproject.toml |
Version bump to 0.1.24 |
CONTRIBUTING.md |
Added documentation for Task issue workflow and PR linking requirements |
.github/workflows/sync-labels.yml |
New GitHub Actions workflow for automated label synchronization |
.github/labels.yml |
Standardized label definitions for all issue types |
.github/PULL_REQUEST_TEMPLATE.md |
Enhanced template with issue type categorization and validation steps |
.github/ISSUE_TEMPLATE/task.md |
New template for tracking maintenance/remedial work |
.github/ISSUE_TEMPLATE/config.yml |
Registration of new Task issue template |
4 tasks
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new structured workflow for tracking maintenance and remedial work in the repository, alongside improvements to issue and pull request templates, and automation for label management. The most important changes are grouped below:
Task Issue Type & Template Integration
🧹 Taskissue template (.github/ISSUE_TEMPLATE/task.md) for tracking remedial or maintenance work that is not a bug or feature, with clear sections for summary, details, and acceptance criteria..github/ISSUE_TEMPLATE/config.ymlto register the new Task issue type and template, ensuring it appears in the issue creation UI.CONTRIBUTING.mdto document the new Task issue workflow, including guidance on when to use it, required information, and validation steps.Label Management and Automation
.github/labels.ymlfile defining standardized labels for bug, enhancement, workflow-gap, and task issue types, with colors and descriptions for each..github/workflows/sync-labels.yml) to automatically sync labels from.github/labels.ymlto the repository, ensuring consistency and reducing manual label management.Pull Request Template Enhancements
.github/PULL_REQUEST_TEMPLATE.mdto support the new Task issue type, added clear checklists for type of change, impact/risk, and validation steps, and clarified how PRs should link to relevant issues (including Task issues).CONTRIBUTING.mdto emphasize linking PRs to the appropriate issue type (Bug/Feature/Workflow Gap/Task) and to reinforce the use of structured templates.