Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds:
.github/labels.yml
file containing this repository's labels.appends/.github/labels.yml
file, which contains all the repository-specific labels currently used in this repo..github/workflows/sync-labels.yml
workflow to automatically synchronize this repository's labelsWith this setup, the labels that can be used in this repo are all defined in a single file: the
.github/labels.yml
file. Thesync-labels.yml
workflow automatically runs whenever this file changes, and will update the repository's label to match the labels defined in the.github/labels.yml
file. Note that is will remove any labels not in the.github/labels.yml
file, so be careful with removing labels from the.github/labels.yml
file.The
.github/labels.yml
file is auto-generated by concatenating these two files:.appends/.github/labels.yml
Whenever one of these two files change, a pull request is automatically submitted to update the
.github/labels.yml
file. Merging that pull request will then trigger the sync-labels workflow, and the labels will be updated.With this setup, we are able to guarantee that each repository can use both the Exercism-wide labels and any track-specific labels.
Tracking
exercism/v3-launch#41