-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c80316d
commit b7bc734
Showing
1 changed file
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
--- | ||
# Labels names are important as they are used by Release Drafter to decide | ||
# regarding where to record them in changelog or if to skip them. | ||
# | ||
# The repository labels will be automatically configured using this file and | ||
# the GitHub Action https://github.com/marketplace/actions/github-labeler. | ||
- name: API Breaking | ||
description: Breaking Changes | ||
color: e305fc | ||
- name: good first issue | ||
description: Good for newcomers | ||
color: 7057ff | ||
|
||
- name: "status: duplicate" | ||
description: This issue or pull request already exists | ||
color: d93f0b | ||
- name: "status: invalid" | ||
description: Invalid issue or pull request | ||
color: d93f0b | ||
- name: "status: requires discussion" | ||
description: Issue requires further discussion before implementation | ||
color: f71bd2 | ||
- name: "status: requires research" | ||
description: Issue requires further research before implementation | ||
color: "d93f0b" | ||
- name: "status: wontfix" | ||
description: Valid issue, but out of scope for future fixes | ||
color: "d93f0b" | ||
|
||
- name: "type: maint: dependencies" | ||
description: Pull requests that update a dependency file | ||
color: "0366d6" | ||
- name: "type: maint: documentation" | ||
description: Improvements or additions to documentation | ||
color: "0075ca" | ||
- name: "type: maint: refactoring" | ||
description: Refactoring | ||
color: ef67c4 | ||
- name: "type: maint: removal" | ||
description: Removals and Deprecations | ||
color: 9ae7ea | ||
- name: "type: maint: style" | ||
description: Style | ||
color: c120e5 | ||
- name: "type: maint: build" | ||
description: Build System and Dependencies | ||
color: bfdadc | ||
|
||
- name: "type: accuracy" | ||
description: "Enhancement that improves accuracy" | ||
color: "bfd4f2" | ||
- name: "type: bug" | ||
description: Something isn't working | ||
color: d73a4a | ||
- name: "type: feature: ui" | ||
description: New feature that adds functionality for the user | ||
color: "0e8a16" | ||
- name: "type: feature: physical" | ||
description: New feature that adds new analysis/physical model | ||
color: "0e8a16" | ||
- name: "type: testing" | ||
description: Testing improvements | ||
color: b1fc6f | ||
- name: "type: performance: memory" | ||
description: Performance improvements that reduce memory usage | ||
color: "016175" | ||
- name: "type: performance: cpu" | ||
description: Performance improvements that reduce walltime | ||
color: "016175" | ||
- name: "type: ci" | ||
description: Updates to CI (GH actions, RTD, etc.) | ||
color: "000000" | ||
- name: "type: question" | ||
description: A question about the code or documentation | ||
color: d876e3 | ||
|
||
- name: "priority: low" | ||
description: Low priority | ||
color: "BFD4F2" | ||
- name: "priority: medium" | ||
description: Medium priority | ||
color: "E99695" | ||
- name: "priority: high" | ||
description: High priority | ||
color: "B60205" |