-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Is your feature request related to a problem? Please describe.
The current GitHub Action at need-fix-to-issue) lacks functionality for:
-
Automatically assigning the issue type "bug" to new issues.
-
Identifying and closing duplicate issues.
-
Closing issues that have become outdated due to inactivity.
Implementing these features would enhance issue management by ensuring proper categorization and reducing clutter from redundant or obsolete issues.
Describe the solution you'd like
-
Assign "bug" Issue Type:
- Reference: Managing issue types in an organization
-
Identify and Close Duplicate Issues:
-
Implementation: Integrate a GitHub Action that searches for duplicate issues based on titles or content and automatically closes them with a comment linking to the original issue.
-
-
Close Outdated Issues:
-
Implementation: Incorporate the
actions/staleGitHub Action to label and close issues that have been inactive for a specified period. -
Reference: Closing inactive issues
-
Describe alternatives you've considered
-
Manual Management: Manually assigning issue types, identifying duplicates, and closing outdated issues. This approach is time-consuming and prone to human error.
-
Third-Party Tools: Using external issue management tools, which may introduce complexity and require additional integration efforts.