mirror of
https://github.com/clap-rs/clap
synced 2024-12-12 22:02:35 +00:00
chore(gh): Update labels
This commit is contained in:
parent
d085797da6
commit
84beec0bca
4 changed files with 69 additions and 18 deletions
2
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
2
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
|
@ -1,6 +1,6 @@
|
|||
name: Bug report
|
||||
description: Things not quite working right
|
||||
labels: 'T: bug'
|
||||
labels: 'C-bug'
|
||||
body:
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
|
|
4
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
4
.github/ISSUE_TEMPLATE/feature_request.yml
vendored
|
@ -1,6 +1,8 @@
|
|||
name: Feature request
|
||||
description: Suggest an idea for this project
|
||||
labels: 'T: new feature'
|
||||
labels:
|
||||
- 'C-enchancement'
|
||||
- 'C-waiting-on-design'
|
||||
body:
|
||||
- type: checkboxes
|
||||
attributes:
|
||||
|
|
2
.github/dependabot.yml
vendored
2
.github/dependabot.yml
vendored
|
@ -6,3 +6,5 @@ updates:
|
|||
interval: monthly
|
||||
time: "07:00"
|
||||
open-pull-requests-limit: 10
|
||||
labels:
|
||||
- C-dependencies
|
||||
|
|
79
.github/settings.yml
vendored
79
.github/settings.yml
vendored
|
@ -18,22 +18,69 @@ repository:
|
|||
delete_branch_on_merge: true
|
||||
|
||||
labels:
|
||||
# Type
|
||||
- name: bug
|
||||
color: '#b60205'
|
||||
description: Not as expected
|
||||
- name: enhancement
|
||||
color: '#1d76db'
|
||||
description: Improve the expected
|
||||
# Flavor
|
||||
- name: question
|
||||
color: "#cc317c"
|
||||
description: Uncertainty is involved
|
||||
- name: breaking-change
|
||||
color: "#e99695"
|
||||
- name: good first issue
|
||||
color: '#c2e0c6'
|
||||
description: Help wanted!
|
||||
- name: "A-builder"
|
||||
description: "Area: Builder API"
|
||||
color: '#f7e101'
|
||||
- name: "A-derive"
|
||||
description: "Area: #[derive]` macro API"
|
||||
color: '#f7e101'
|
||||
- name: "A-docs"
|
||||
description: "Area: documentation, including docs.rs, readme, examples, etc..."
|
||||
color: '#f7e101'
|
||||
- name: "A-completion"
|
||||
description: "Area: completion generator"
|
||||
color: '#f7e101'
|
||||
- name: "A-help"
|
||||
description: "Area: Help or usage messages"
|
||||
color: '#f7e101'
|
||||
- name: "A-meta"
|
||||
description: "Area: administrative question or tracking issue"
|
||||
color: '#f7e101'
|
||||
- name: "A-parsing"
|
||||
description: "Area: Parser's logic and needs it changed somehow."
|
||||
color: '#f7e101'
|
||||
- name: "C-bug"
|
||||
description: "Category: Things not working as expected"
|
||||
color: '#f5f1fd'
|
||||
- name: "C-enhancement"
|
||||
description: "Category: Raise on the bar on expectations"
|
||||
color: '#f5f1fd'
|
||||
- name: "C-tracking-issue"
|
||||
description: "Category: A tracking issue for an unstable feature"
|
||||
color: '#f5f1fd'
|
||||
- name: "C-dependencies"
|
||||
description: "Category: Updating dependencies"
|
||||
color: '#f5f1fd'
|
||||
- name: "E-easy"
|
||||
description: "Call for participation: Experience needed to fix: Easy / not much"
|
||||
color: '#02E10C'
|
||||
- name: "E-medium"
|
||||
description: "Call for participation: Experience needed to fix: Medium / intermediate"
|
||||
color: '#02E10C'
|
||||
- name: "E-hard"
|
||||
description: "Call for participation: Experience needed to fix: Hard / a lot"
|
||||
color: '#02E10C'
|
||||
- name: "E-help-wanted"
|
||||
description: "Call for participation: Help is requested to fix this issue."
|
||||
color: '#02E10C'
|
||||
- name: "S-blocked"
|
||||
description: "Status: marked as blocked on something else such as an RFC or other implementation work."
|
||||
color: '#D3DDDD'
|
||||
- name: "S-experimental"
|
||||
description: "Status: Ongoing experiment that does not require reviewing and won't be merged in its current state."
|
||||
color: '#D3DDDD'
|
||||
- name: "S-waiting-on-design"
|
||||
description: "Status: Waiting on design to be resolved before implementing"
|
||||
color: '#D3DDDD'
|
||||
- name: "S-waiting-on-decision"
|
||||
description: "Status: Waiting on a go/no-go before implementing"
|
||||
color: '#D3DDDD'
|
||||
- name: "S-waiting-on-author"
|
||||
description: "Status: This is awaiting some action (such as code changes or more information) from the author."
|
||||
color: '#D3DDDD'
|
||||
- name: "M-breaking change"
|
||||
description: "Meta: Implementing or merging this will introduce a breaking change."
|
||||
color: '#E10C02'
|
||||
|
||||
branches:
|
||||
- name: main
|
||||
|
|
Loading…
Reference in a new issue