Skip to content

Commit

Permalink
Add missing cross-track labels (#16)
Browse files Browse the repository at this point in the history
This commit should update the Exercism-wide labels part of your repo's `labels.yml` file to the organization-wide labels defined in https://github.com/exercism/org-wide-files/blob/main/global-files/.github/labels.yml. It also removes the (now deprecated) `reputation/contributed_code/major` and `reputation/contributed_code/minor` labels.

Before merging this PR, please check if the PR does not update your repository-specific labels unless you have recently changed your .appends/.github/labels.yml file. It should _only_ update the organization-wide labels.

See #16 for the corresponding PR.
  • Loading branch information
ErikSchierboom committed Jul 2, 2021
1 parent cd282da commit 53f1670
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 29 deletions.
57 changes: 29 additions & 28 deletions global-files/.github/labels.yml
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
# This is an auto-generated file. Please don't edit this file directly.
# --------------------------------------------------------------- #
# This is an auto-generated file - Do not manually edit this file #
# --------------------------------------------------------------- #

# This file is automatically generated by merging two files:
# 1. The Exercism-wide labels: defined in https://github.com/exercism/org-wide-files/blob/main/synced-files/.github/labels.yml)
# 2. The repository-specific labels: defined in a `.appends/.github/labels.yml` file (optional)
# This file is automatically generated by concatenating two files:
#
# If you want to use additional labels besides the Exercism-wide labels,
# don't edit this file directly but instead create a `.appends/.github/labels.yml`
# file within this repo.
# 1. The Exercism-wide labels: defined in https://github.com/exercism/org-wide-files/blob/main/global-files/.github/labels.yml
# 2. The repository-specific labels: defined in the `.appends/.github/labels.yml` file within this repository.
#
# Any changes to the repo's `.appends/.github/labels.yml` file or the
# Exercism-wide `labels.yml` file will automatically result in this file being
# regenerated and the labels being updated. This typically takes 5-10 minutes.

# ---
# If any of these two files change, a pull request is automatically containing a re-generated version of this file.
# Consequently, to change repository-specific labels you should update the `.appends/.github/labels.yml` file and _not_ this file.
#
# These are the Exercism-wide labels which are shared across all repos.
# The Exercism-wide labels are used to show "tasks" on the website, which
# will point users to things they can help contribute with.
# When the pull request has been merged, the GitHub labels will be automatically updated by the "Sync labels" workflow.
# This typically takes 5-10 minutes.

# --------------------------------------------------------------------- #
# These are the Exercism-wide labels which are shared across all repos. #
# --------------------------------------------------------------------- #

# The following Exercism-wide labels are used to show "tasks" on the website, which will point users to things they can help contribute with.

# The x:action labels describe what sort of work the contributor
# will be engaged in when working on the issue
# The `x:action/<value>` labels describe what sort of work the contributor will be engaged in when working on the issue
- name: "x:action/create"
description: "Work on something from scratch"
color: "6f60d2"
Expand All @@ -40,8 +40,7 @@
description: "Sync content with its latest version"
color: "6f60d2"

# The x:knowledge labels describe how much Exercism knowledge
# is required by the contributor
# The `x:knowledge/<value>` labels describe how much Exercism knowledge is required by the contributor
- name: "x:knowledge/none"
description: "No existing Exercism knowledge required"
color: "604fcd"
Expand All @@ -58,8 +57,7 @@
description: "Comprehensive Exercism knowledge required"
color: "604fcd"

# The x:models labels indicate what part of Exercism
# the contributor will be working on
# The `x:module/<value>` labels indicate what part of Exercism the contributor will be working on
- name: "x:module/analyzer"
description: "Work on Analyzers"
color: "5240c9"
Expand Down Expand Up @@ -88,8 +86,7 @@
description: "Work on Test Runners"
color: "5240c9"

# The x:size labels describe the expected amount of work
# for a contributor
# The `x:size/<value>` labels describe the expected amount of work for a contributor
- name: "x:size/tiny"
description: "Tiny amount of work"
color: "4836bf"
Expand All @@ -110,20 +107,18 @@
description: "Massive amount of work"
color: "4836bf"

# The x:status label indicates if there is already someone
# working on the issue
# The `x:status/<value>` label indicates if there is already someone working on the issue
- name: "x:status/claimed"
description: "Someone is working on this issue"
color: "4231af"

# The x:type labels describe how much Exercism knowledge
# is required by the contributor
# The `x:type/<value>` labels describe what type of work the contributor will be engaged in
- name: "x:type/ci"
description: "Work on Continuous Integration (e.g. GitHub Actions workflows)"
color: "3c2d9f"

- name: "x:type/coding"
description: "Work on code that will run in production"
description: "Write code that is not student-facing content (e.g. test-runners, generators, but not exercises)"
color: "3c2d9f"

- name: "x:type/content"
Expand All @@ -137,3 +132,9 @@
- name: "x:type/docs"
description: "Work on Documentation"
color: "3c2d9f"

# This Exercism-wide label is added to all automatically created pull requests that help migrate/prepare a track for Exercism v3
- name: "v3-migration 🤖"
description: "Preparing for Exercism v3"
color: "e99695"

2 changes: 1 addition & 1 deletion global-files/.github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- .github/labels.yml
- .github/workflows/sync-labels.yml
schedule:
- cron: 6 6 6 * *
- cron: 0 0 1 * *
workflow_dispatch:

jobs:
Expand Down

0 comments on commit 53f1670

Please sign in to comment.