-
-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Define repo-specific labels. This commit adds a `.appends/.github/labels.yml` file, which contains the repo-specific labels. This file will automatically be combined with the Exercism-wide labels defined in https://github.com/exercism/org-wide-files/blob/main/global-files/.github/labels.yml to form the `.github/labels.yml` file. * Define the labels used in this repo. This commit adds a `.github/labels.yml` file, which contains the full list of labels that this repo can use. This file is a combination of the `.appends/.github/labels.yml` file and the Exercism-wide labels defined in https://github.com/exercism/org-wide-files/blob/main/global-files/.github/labels.yml. * Add a GitHub Actions workflow to automatically sync the repository labels. This commit adds a `.github/workflow/sync-labels.yml` file, which defines a workflow that syncs this repository's labels with the contents of the `.github/labels.yml` file. The labels are synced automatically whenever the `.github/labels.yml` file changes.
- Loading branch information
1 parent
af64d25
commit 133beae
Showing
3 changed files
with
114 additions
and
81 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 |
---|---|---|
@@ -1,72 +1,40 @@ | ||
- name: "bug" | ||
description: "" | ||
color: "fc2929" | ||
|
||
- name: "dependencies" | ||
description: "Pull requests that update a dependency file" | ||
color: "0025ff" | ||
# ----------------------------------------------------------------------------------------- # | ||
# These are the repository-specific labels that augment the Exercise-wide labels defined in # | ||
# https://github.com/exercism/org-wide-files/blob/main/global-files/.github/labels.yml. # | ||
# ----------------------------------------------------------------------------------------- # | ||
|
||
- name: "discussion" | ||
description: "" | ||
color: "cc317c" | ||
- name: "bug" | ||
description: "Something isn't working" | ||
color: "d73a4a" | ||
|
||
- name: "documentation" | ||
description: "" | ||
color: "cc317c" | ||
description: "Improvements or additions to documentation" | ||
color: "0075ca" | ||
|
||
- name: "duplicate" | ||
description: "" | ||
color: "cccccc" | ||
description: "This issue or pull request already exists" | ||
color: "cfd3d7" | ||
|
||
- name: "enhancement" | ||
description: "" | ||
color: "84b6eb" | ||
|
||
- name: "feature" | ||
description: "" | ||
color: "0e8a16" | ||
description: "New feature or request" | ||
color: "a2eeef" | ||
|
||
- name: "good first issue" | ||
description: "" | ||
color: "fcd8c4" | ||
|
||
- name: "hacktoberfest" | ||
description: "" | ||
color: "FF4500" | ||
description: "Good for newcomers" | ||
color: "7057ff" | ||
|
||
- name: "help wanted" | ||
description: "" | ||
color: "0e8a16" | ||
|
||
- name: "in-progress" | ||
description: "" | ||
color: "fbca04" | ||
description: "Extra attention is needed" | ||
color: "008672" | ||
|
||
- name: "invalid" | ||
description: "" | ||
color: "cccccc" | ||
|
||
- name: "on-hold" | ||
description: "" | ||
color: "cccccc" | ||
|
||
- name: "optimization" | ||
description: "" | ||
color: "84b6eb" | ||
description: "This doesn't seem right" | ||
color: "e4e669" | ||
|
||
- name: "question" | ||
description: "" | ||
color: "cc317c" | ||
|
||
- name: "v3-migration 🤖" | ||
description: "Preparing for Exercism v3" | ||
color: "E99695" | ||
|
||
- name: "waiting-on-external" | ||
description: "" | ||
color: "2020a3" | ||
description: "Further information is requested" | ||
color: "d876e3" | ||
|
||
- name: "wontfix" | ||
description: "" | ||
color: "cccccc" | ||
|
||
description: "This will not be worked on" | ||
color: "ffffff" |
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
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