Skip to content

Commit 4d4cdad

Browse files
authored
Removed unnecessary labels (#87)
1 parent 25c1e76 commit 4d4cdad

File tree

3 files changed

+7
-21
lines changed

3 files changed

+7
-21
lines changed

.github/labeler.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,4 +51,7 @@ chore:
5151
- head-branch: [ '^chore', 'chore' ]
5252

5353
maintenance:
54-
- head-branch: [ '^maintenance', 'maintenance' ]
54+
- head-branch: [ '^maintenance', 'maintenance' ]
55+
56+
security-fixes:
57+
- head-branch: [ '^security', 'security' ]

.github/release-drafter.yml

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name-template: 'Release v${{ env.RELEASE_VERSION }}'
1+
name-template: 'v${{ env.RELEASE_VERSION }}'
22
tag-template: 'v${{ env.RELEASE_VERSION }}'
33
categories:
44
- title: '🚀 Features'
@@ -37,24 +37,7 @@ categories:
3737
- title: '🔒 Security'
3838
labels:
3939
- 'security'
40-
- 'vulnerability'
41-
- 'vulnerabilities'
42-
- 'security-fix'
4340
- 'security-fixes'
44-
- 'security-update'
45-
- 'security-updates'
46-
- 'security-patch'
47-
- 'security-patches'
48-
- 'security-release'
49-
- 'security-releases'
50-
- 'security-issue'
51-
- 'security-issues'
52-
- 'security-bug'
53-
- 'security-bugs'
54-
- 'security-vulnerability'
55-
- 'security-vulnerabilities'
56-
- 'security-notice'
57-
- 'security-notices'
5841
collapse-after: 3
5942
- title: '✨ Enhancement'
6043
collapse-after: 3

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
with:
109109
commitish: main
110110
tag: v${{ env.RELEASE_VERSION }}
111-
name: Release ${{ env.RELEASE_VERSION }}
111+
name: v${{ env.RELEASE_VERSION }}
112112
version: ${{ env.RELEASE_VERSION }}
113113
env:
114114
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -121,7 +121,7 @@ jobs:
121121
RELEASE_VERSION: ${{ needs.prepare-and-check.outputs.version }}
122122
with:
123123
tag_name: v${{ env.RELEASE_VERSION }}
124-
release_name: Release ${{ env.RELEASE_VERSION }}
124+
release_name: v${{ env.RELEASE_VERSION }}
125125
body: ${{ steps.draft_release.outputs.body }}
126126
draft: false
127127
prerelease: false

0 commit comments

Comments
 (0)