-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tb1337
committed
Feb 9, 2024
1 parent
5021d45
commit f6b5b60
Showing
6 changed files
with
66 additions
and
36 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
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 |
---|---|---|
@@ -1,38 +1,54 @@ | ||
--- | ||
name-template: 'v$RESOLVED_VERSION 🌈' | ||
tag-template: 'v$RESOLVED_VERSION' | ||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)' | ||
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. | ||
|
||
categories: | ||
- title: '🚀 Features' | ||
- title: '🚨 Breaking changes' | ||
labels: | ||
- 'enhancement' | ||
- 'refactor' | ||
- 'breaking-change' | ||
- title: '✨ New features' | ||
labels: | ||
- 'new-feature' | ||
- title: '🐛 Bug Fixes' | ||
labels: | ||
- 'bug' | ||
- 'bugfix' | ||
- title: '🚀 Enhancements' | ||
labels: | ||
- 'enhancement' | ||
- 'refactor' | ||
- 'performance' | ||
- title: '🧰 Maintenance' | ||
label: 'chore' | ||
template: | | ||
## Changes | ||
labels: | ||
- 'maintenance' | ||
- 'ci' | ||
- title: '📚 Documentation' | ||
labels: | ||
- 'documentation' | ||
- title: '⬆️ Dependency updates' | ||
labels: | ||
- 'dependencies' | ||
|
||
$CHANGES | ||
version-resolver: | ||
major: | ||
labels: | ||
- 'breaking change' | ||
- 'major' | ||
- 'breaking-change' | ||
minor: | ||
labels: | ||
- 'minor' | ||
- 'new-feature' | ||
patch: | ||
labels: | ||
- 'bugfix' | ||
- 'dependencies' | ||
- 'enhancement' | ||
- 'performance' | ||
- 'refactor' | ||
default: patch | ||
autolabeler: | ||
- label: 'bug' | ||
branch: | ||
- '/fix\/.+/' | ||
title: | ||
- '/fix/i' | ||
- label: 'enhancement' | ||
branch: | ||
- '/feature\/.+/' | ||
- label: 'chore' | ||
branch: | ||
- '/chore\/.+/' | ||
|
||
template: | | ||
## Changes | ||
$CHANGES |
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 |
---|---|---|
|
@@ -2,23 +2,28 @@ | |
name: PR Labels | ||
|
||
on: | ||
pull_request: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- synchronize | ||
- labeled | ||
- unlabeled | ||
branches: | ||
- master | ||
|
||
permissions: {} | ||
workflow_call: | ||
|
||
jobs: | ||
pr_labels: | ||
pr-labels: | ||
name: Verify | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 🏷 Verify valid PR label | ||
uses: ludeeus/[email protected] | ||
with: | ||
labels: >- | ||
breaking-change, bugfix, chore, dependencies, documentation, enhancement, new-feature, refactor | ||
breaking-change, bugfix, | ||
ci, | ||
dependencies, documentation, | ||
enhancement, | ||
maintenance, | ||
new-feature, | ||
performance, | ||
refactor |
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 |
---|---|---|
@@ -1,17 +1,19 @@ | ||
# Utilize release drafter action | ||
|
||
--- | ||
name: Release Drafter | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
|
||
|
||
jobs: | ||
update_release_draft: | ||
name: 📝 Draft release | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Drafts your next Release notes as Pull Requests are merged into "master" | ||
- uses: release-drafter/[email protected] | ||
- name: 🚀 Run Release Drafter | ||
uses: release-drafter/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |