From 7dc3afaca1c56abb3c698528fafc40d820e13b92 Mon Sep 17 00:00:00 2001 From: Keisuke Umeno <9renpoto@gmail.com> Date: Sun, 31 Dec 2023 11:09:37 +0900 Subject: [PATCH] chore: sync labels --- .github/labels.json | 205 ------------------------------ .github/labels.yaml | 133 +++++++++++++++++++ .github/workflows/sync-labels.yml | 2 +- 3 files changed, 134 insertions(+), 206 deletions(-) delete mode 100644 .github/labels.json create mode 100644 .github/labels.yaml diff --git a/.github/labels.json b/.github/labels.json deleted file mode 100644 index f6888ca61..000000000 --- a/.github/labels.json +++ /dev/null @@ -1,205 +0,0 @@ -[ - { - "name": "duplicate", - "color": "ededed", - "description": "This issue or Pull Request already exists" - }, - { - "name": "help wanted", - "color": "e99695", - "description": "Extra attention is needed" - }, - { - "name": "good first issue", - "color": "7057ff", - "description": "Good for newcomers", - "aliases": [ - "beginner-friendly", - "beginner", - "good-starter-issue", - "good for beginner", - "Good for beginners", - "starter-issue", - "starter" - ] - }, - { - "name": "Priority: Critical", - "color": "ee0701" - }, - { - "name": "Priority: High", - "color": "d93f0b" - }, - { - "name": "Priority: Medium", - "color": "fbca04" - }, - { - "name": "Priority: Low", - "color": "0e8a16" - }, - { - "name": "Status: Abandoned", - "color": "000000", - "description": "The issue or Pull Request is wontfix", - "aliases": [ - "wontfix", - "invalid" - ] - }, - { - "name": "Status: Blocked", - "color": "ee0701", - "description": "Progress on the issue is Blocked", - "aliases": [ - "blocked" - ] - }, - { - "name": "Status: In Progress", - "description": "Work in Progress", - "color": "cccccc" - }, - { - "name": "Status: Proposal", - "color": "d4c5f9", - "description": "Request for comments", - "aliases": [ - "idea", - "Idea", - "proposal", - "Proposal", - "discussion" - ] - }, - { - "name": "Status: PR Welcome", - "color": "2E7733", - "description": "Welcome to Pull Request", - "aliases": [ - "Patch Welcome", - "Status: Ready for PR" - ] - }, - { - "name": "Status: Review Needed", - "color": "fbca04", - "description": "Request for review comments" - }, - { - "name": "Status: Need More Info", - "color": "F9C90A", - "description": "Lacks enough info to make progress" - }, - { - "name": "Type: Breaking Change", - "color": "b60205", - "description": "Includes breaking changes", - "aliases": [ - "breaking", - "breaking-change" - ] - }, - { - "name": "Type: Bug", - "color": "ee0701", - "description": "Bug or Bug fixes", - "aliases": [ - "bug" - ] - }, - { - "name": "Type: Documentation", - "color": "0e8a16", - "description": "Documentation only changes", - "aliases": [ - "documents", - "document" - ] - }, - { - "name": "Type: Feature", - "color": "1d76db", - "description": "New Feature", - "aliases": [ - "enhancement" - ] - }, - { - "name": "Type: Refactoring", - "color": "fbca04", - "description": "A code change that neither fixes a bug nor adds a feature", - "aliases": [ - "refactor" - ] - }, - { - "name": "Type: Testing", - "color": "257759", - "description": "Adding missing tests or correcting existing tests", - "aliases": [ - "test", - "testing" - ] - }, - { - "name": "Type: Maintenance", - "color": "abd406", - "description": "Repository Maintenance", - "aliases": [ - "greenkeeper", - "maintenance" - ] - }, - { - "name": "Type: CI", - "color": "ffd412", - "description": "Changes to CI configuration files and scripts", - "aliases": [ - "travis", - "ci", - "circleci" - ] - }, - { - "name": "Type: Question", - "color": "cc317c", - "description": "Further information is requested", - "aliases": [ - "question" - ] - }, - { - "name": "Type: Security", - "color": "ee0701", - "description": "Vulnerability disclosure or Fixing security issue", - "aliases": [ - "security" - ] - }, - { - "name": "Type: Dependencies", - "color": "0366d6", - "description": "Dependency issues or Changes to dependency files", - "aliases": [ - "dependencies" - ] - }, - { - "name": "Type: Meta", - "color": "BFD4F2", - "description": "Type: Meta - Related to repository itself", - "aliases": [ - "meta" - ] - }, - { - "name": "Type: Release", - "color": "5319E7", - "description": "Related to release process", - "aliases": [ - "meta" - ] - } -] diff --git a/.github/labels.yaml b/.github/labels.yaml new file mode 100644 index 000000000..6cc2fc6e7 --- /dev/null +++ b/.github/labels.yaml @@ -0,0 +1,133 @@ +--- +- name: duplicate + color: ededed + description: This issue or Pull Request already exists +- name: help wanted + color: e99695 + description: Extra attention is needed +- name: good first issue + color: 7057ff + description: Good for newcomers + aliases: + - beginner-friendly + - beginner + - good-starter-issue + - good for beginner + - Good for beginners + - starter-issue + - starter +- name: 'Priority: Critical' + color: ee0701 +- name: 'Priority: High' + color: d93f0b +- name: 'Priority: Medium' + color: fbca04 +- name: 'Priority: Low' + color: 0e8a16 +- name: 'Status: Abandoned' + color: '000000' + description: The issue or Pull Request is wontfix + aliases: + - wontfix + - invalid +- name: 'Status: Blocked' + color: ee0701 + description: Progress on the issue is Blocked + aliases: + - blocked +- name: 'Status: In Progress' + description: Work in Progress + color: cccccc +- name: 'Status: Proposal' + color: d4c5f9 + description: Request for comments + aliases: + - idea + - Idea + - proposal + - Proposal + - discussion +- name: 'Status: PR Welcome' + color: 2E7733 + description: Welcome to Pull Request + aliases: + - Patch Welcome + - 'Status: Ready for PR' +- name: 'Status: Review Needed' + color: fbca04 + description: Request for review comments +- name: 'Status: Need More Info' + color: F9C90A + description: Lacks enough info to make progress +- name: 'Type: Breaking Change' + color: b60205 + description: Includes breaking changes + aliases: + - breaking + - breaking-change +- name: 'Type: Bug' + color: ee0701 + description: Bug or Bug fixes + aliases: + - bug +- name: 'Type: Documentation' + color: 0e8a16 + description: Documentation only changes + aliases: + - documents + - document +- name: 'Type: Feature' + color: 1d76db + description: New Feature + aliases: + - enhancement +- name: 'Type: Refactoring' + color: fbca04 + description: A code change that neither fixes a bug nor adds a feature + aliases: + - refactor +- name: 'Type: Testing' + color: '257759' + description: Adding missing tests or correcting existing tests + aliases: + - test + - testing +- name: 'Type: Maintenance' + color: abd406 + description: Repository Maintenance + aliases: + - greenkeeper + - maintenance +- name: 'Type: CI' + color: ffd412 + description: Changes to CI configuration files and scripts + aliases: + - travis + - ci + - circleci +- name: 'Type: Question' + color: cc317c + description: Further information is requested + aliases: + - question +- name: 'Type: Security' + color: ee0701 + description: Vulnerability disclosure or Fixing security issue + aliases: + - security +- name: 'Type: Dependencies' + color: 0366d6 + description: Dependency issues or Changes to dependency files + aliases: + - dependencies +- name: 'Type: Meta' + color: BFD4F2 + description: 'Type: Meta - Related to repository itself' + aliases: + - meta +- name: 'Type: Release' + color: 5319E7 + description: Related to release process + aliases: + - meta + diff --git a/.github/workflows/sync-labels.yml b/.github/workflows/sync-labels.yml index de27f94ba..d3ba05bd9 100644 --- a/.github/workflows/sync-labels.yml +++ b/.github/workflows/sync-labels.yml @@ -14,5 +14,5 @@ jobs: - uses: EndBug/label-sync@v2 with: config-file: | - .github/labels.json + .github/labels.yaml delete-other-labels: true