Template repository used to create new repository
.github/
├── ISSUE_TEMPLATE
│ ├── bug_report.md
│ ├── documentation_request.md
│ └── feature_request.md
└── workflows
└── add-triage-label.yml
add-triage-label.yml is used to add triage label on opened or reopened issues.
Contributors can use the triagelabel to filter new issues.
The idea is to remove the triage label and adding some label like enhancement for a feature request, bug for a regression, or discussionto transform the issue in a discussion. In the future we might use also milestones.
#gh label list
bug Something isn't working #d73a4a
documentation Improvements or additions to documentation #0075ca
duplicate This issue or pull request already exists #cfd3d7
enhancement New feature or request #a2eeef
good first issue Good for newcomers #7057ff
help wanted Extra attention is needed #008672
invalid This doesn't seem right #e4e669
question Further information is requested #d876e3
wontfix This will not be worked on #ffffff
discussion issue to move to a discussion #BFD4F2
triage #edededyou can use ghto copy labels to other repository :
export TARGET_REPO=plantuml/YOUR_REPOSITORY
gh label clone plantuml/template --force -R $TARGET_REPO