-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
99d5d71
commit ea3b3d9
Showing
5 changed files
with
31 additions
and
29 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,55 +1,55 @@ | ||
autolabeler: | ||
- label: 'patch' | ||
- label: "patch" | ||
body: | ||
- '/\[x] Patch/gm' | ||
- label: 'minor' | ||
- label: "minor" | ||
body: | ||
- '/\[x] Minor/gm' | ||
- label: 'major' | ||
- label: "major" | ||
body: | ||
- '/\[x] Major/gm' | ||
- label: 'bugfix' | ||
- label: "bugfix" | ||
body: | ||
- '/\[x] Bug Fix/gm' | ||
- label: 'documentation' | ||
- label: "documentation" | ||
body: | ||
- '/\[x] Documentation/gm' | ||
- label: 'feature' | ||
- label: "feature" | ||
body: | ||
- '/\[x] Feature/gm' | ||
- label: 'enhancement' | ||
- label: "enhancement" | ||
body: | ||
- '/\[x] New Component/gm' | ||
|
||
version-resolver: | ||
major: | ||
labels: | ||
- 'major' | ||
- "major" | ||
minor: | ||
labels: | ||
- 'minor' | ||
- "minor" | ||
patch: | ||
labels: | ||
- 'patch' | ||
- "patch" | ||
default: patch | ||
|
||
name-template: 'v$RESOLVED_VERSION' | ||
tag-template: '$RESOLVED_VERSION' | ||
name-template: "v$RESOLVED_VERSION" | ||
tag-template: "$RESOLVED_VERSION" | ||
categories: | ||
- title: 'Features' | ||
- title: "Features" | ||
labels: | ||
- 'feature' | ||
- 'enhancement' | ||
- title: 'Bug Fixes' | ||
- "feature" | ||
- "enhancement" | ||
- title: "Bug Fixes" | ||
labels: | ||
- 'fix' | ||
- 'bugfix' | ||
- 'bug' | ||
- title: 'Maintenance' | ||
label: 'chore' | ||
change-template: '- $TITLE @$AUTHOR (#$NUMBER)' | ||
- "fix" | ||
- "bugfix" | ||
- "bug" | ||
- title: "Maintenance" | ||
label: "chore" | ||
change-template: "- $TITLE @$AUTHOR (#$NUMBER)" | ||
change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks. | ||
template: | | ||
## Changes | ||
$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
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 |
---|---|---|
|
@@ -4,14 +4,14 @@ name: Check PR labels | |
|
||
on: | ||
pull_request: | ||
types: [opened, labeled, unlabeled] | ||
types: [opened, labeled, unlabeled] | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: jesusvasquez333/[email protected] | ||
with: | ||
github-token: '${{ secrets.GITHUB_TOKEN }}' | ||
valid-labels: 'major, minor, patch' | ||
invalid-labels: 'hold' | ||
github-token: "${{ secrets.GITHUB_TOKEN }}" | ||
valid-labels: "major, minor, patch" | ||
invalid-labels: "hold" |
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