-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement new GH labels for release categories
- Loading branch information
Showing
5 changed files
with
90 additions
and
6 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,27 @@ | ||
- name: Feature | ||
color: "0E8A16" | ||
description: "A new feature" | ||
- name: Improvement | ||
color: "FBCA04" | ||
description: "Code improvements" | ||
- name: Dependency | ||
color: "5319E7" | ||
description: "Updates in dependencies" | ||
- name: Documentation | ||
color: "ABABAB" | ||
description: "Documentation updates" | ||
- name: Deprecated | ||
color: 1D76DB | ||
description: "Deprecated resource/feature" | ||
- name: Removed | ||
color: "E99695" | ||
description: "Removed this logic" | ||
- name: Bug | ||
color: "B60205" | ||
description: "Fixes a production issue" | ||
- name: GHA | ||
color: "0052CC" | ||
description: "This label will be ignored from autogenerated release notes" | ||
- name: IgnoreForRelease | ||
color: "ABABAB" | ||
description: "This label will be ignored from autogenerated release notes" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# .github/release.yml | ||
# Contains configure for auto generated release notes | ||
changelog: | ||
exclude: | ||
labels: | ||
- IgnoreForRelease | ||
categories: | ||
- title: "Features" | ||
labels: | ||
- "Feature" | ||
- title: "Improvements" | ||
labels: | ||
- "Improvement" | ||
- title: "Bugs" | ||
labels: | ||
- "Bug" | ||
- title: "Deprecated" | ||
labels: | ||
- "Deprecated" | ||
- title: "Removed" | ||
labels: | ||
- "Removed" | ||
- title: "Dependencies" | ||
labels: | ||
- "Dependency" | ||
- title: "Other" | ||
labels: | ||
- "Documentation" | ||
- "GHA" |
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,22 @@ | ||
name: Manage labels | ||
|
||
on: | ||
push: | ||
branches: | ||
- "[0-9]+.x" | ||
paths: | ||
- ".github/labels.yml" | ||
- ".github/workflows/labels.yml" | ||
|
||
jobs: | ||
labeler: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run Labeler | ||
uses: crazy-max/ghaction-github-labeler@v5 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
yaml-file: .github/labels.yml |
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