-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: Switch back to release drafter workflow
- Loading branch information
1 parent
89caa64
commit 3b7eb77
Showing
9 changed files
with
81 additions
and
82 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,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,42 @@ | ||
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: "New features" | ||
labels: | ||
- 'feature' | ||
- 'enhancement' | ||
- 'new-feature' | ||
- 'new-provider' | ||
|
||
- title: '⬆️ Dependencies and various chores/maintenance' | ||
collapse-after: 1 | ||
labels: | ||
- 'dependencies' | ||
- 'ci' | ||
- 'documentation' | ||
- 'maintenance' | ||
|
||
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 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,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.
This file was deleted.
Oops, something went wrong.