-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert CI workflow to release-drafter again
- Loading branch information
1 parent
7d42920
commit ac97a50
Showing
7 changed files
with
88 additions
and
31 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,4 @@ | ||
# These are supported funding model platforms | ||
|
||
github: music-assistant | ||
custom: https://www.buymeacoffee.com/marcelveldt |
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,45 @@ | ||
name-template: '$RESOLVED_VERSION' | ||
tag-template: '$RESOLVED_VERSION' | ||
change-template: '- #$NUMBER - $TITLE (@$AUTHOR)' | ||
categories: | ||
|
||
- title: "⚠ Breaking Changes" | ||
labels: | ||
- 'breaking-change' | ||
|
||
- title: "🐛 Bugfixes" | ||
labels: | ||
- 'bugfix' | ||
|
||
- title: "🚀 Features" | ||
labels: | ||
- 'feature' | ||
- 'enhancement' | ||
- 'new-feature' | ||
- 'new-provider' | ||
|
||
- title: '🧰 Maintenance' | ||
labels: | ||
- 'ci' | ||
- 'documentation' | ||
- 'maintenance' | ||
|
||
- title: '⬆️ Dependencies' | ||
collapse-after: 1 | ||
labels: | ||
- 'dependencies' | ||
|
||
template: | | ||
## What’s Changed | ||
$CHANGES | ||
version-resolver: | ||
major: | ||
labels: | ||
- 'breaking-change' | ||
minor: | ||
labels: | ||
- 'new-feature' | ||
- 'new-provider' | ||
default: patch |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,24 @@ | ||
--- | ||
name: PR Labels | ||
|
||
# yamllint disable-line rule:truthy | ||
on: | ||
pull_request: | ||
types: | ||
- synchronize | ||
- labeled | ||
- unlabeled | ||
branches: | ||
- stable | ||
- dev | ||
|
||
jobs: | ||
pr_labels: | ||
name: Verify | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 🏷 Verify PR has a valid label | ||
uses: ludeeus/[email protected] | ||
with: | ||
labels: >- | ||
breaking-change, bugfix, refactor, new-feature, maintenance, ci, dependencies, documentation, new-provider, enhancement |
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,15 @@ | ||
name: Release Drafter | ||
|
||
on: | ||
push: | ||
branches: | ||
- stable | ||
|
||
jobs: | ||
update_release_draft: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Drafts your next Release notes as Pull Requests are merged into "stable" | ||
- uses: release-drafter/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file was deleted.
Oops, something went wrong.