Skip to content

Commit 03fe874

Browse files
committed
Merged labeler into release-drafter
1 parent 65e0cd6 commit 03fe874

6 files changed

Lines changed: 44 additions & 69 deletions

File tree

.github/labeler.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/release-drafter.yml

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,16 +35,13 @@ exclude-contributors:
3535
version-resolver:
3636
major:
3737
labels:
38-
- 'major'
3938
- '❗ BreakingChange'
4039
minor:
4140
labels:
42-
- 'minor'
4341
- '✏️ Feature'
4442
- '📝 Proposal'
4543
patch:
4644
labels:
47-
- 'patch'
4845
- '📒 Documentation'
4946
- '☢️ Bug'
5047
- '🤖 Dependencies'
@@ -56,4 +53,33 @@ template: |
5653
5754
**Full Changelog**: https://github.com/$OWNER/$REPOSITORY/compare/$PREVIOUS_TAG...v$RESOLVED_VERSION
5855
59-
Thank you $CONTRIBUTORS for making this update possible.
56+
Thank you $CONTRIBUTORS for making this release possible.
57+
58+
autolabeler:
59+
- label: '📒 Documentation'
60+
matcher:
61+
title: '/(docs|doc:|\[doc\]|README|typos|comment|documentation)/i'
62+
- label: '☢️ Bug'
63+
matcher:
64+
title: '/(fix|race|bug|missing|correct)/i'
65+
- label: '🧹 Updates'
66+
matcher:
67+
title: '/(improve|update|refactor|deprecated|remove|unused|test)/i'
68+
- label: '🤖 Dependencies'
69+
matcher:
70+
title: '/(bump|dependencies)/i'
71+
- label: '✏️ Feature'
72+
matcher:
73+
title: '/(feature|feat|create|implement|add)/i'
74+
- label: '📝 Proposal'
75+
matcher:
76+
title: '/(proposal|idea|request|suggest)/i'
77+
- label: '🤔 Question'
78+
matcher:
79+
title: '/(question|how)/i'
80+
- label: 'v3'
81+
branch:
82+
- '/main/'
83+
- label: 'v2'
84+
branch:
85+
- '/v2/'

.github/workflows/auto-labeler.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

.github/workflows/benchmark.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,11 @@ on:
22
push:
33
branches:
44
- main
5-
paths:
6-
- "**.go"
7-
- "go.mod"
8-
- "go.sum"
5+
paths-ignore:
6+
- "**/*.md"
97
pull_request:
10-
paths:
11-
- "**.go"
12-
- "go.mod"
13-
- "go.sum"
8+
paths-ignore:
9+
- "**/*.md"
1410

1511
permissions:
1612
# deployments permission to deploy GitHub pages website

.github/workflows/markdown.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ on:
44
push:
55
branches:
66
- main
7+
paths:
8+
- "**/*.md"
79
pull_request:
10+
paths:
11+
- "**/*.md"
812

913
jobs:
1014
markdownlint:

.github/workflows/modernize.yml

Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,13 @@ on:
44
push:
55
branches:
66
- main
7-
paths:
8-
- "**.go"
9-
- "!**/*_msgp*.go"
10-
- "go.mod"
11-
- "go.sum"
7+
paths-ignore:
8+
- "**/*.md"
9+
- "**/*_msgp*.go"
1210
pull_request:
13-
paths:
14-
- "**.go"
15-
- "!**/*_msgp*.go"
16-
- "go.mod"
17-
- "go.sum"
11+
paths-ignore:
12+
- "**/*.md"
13+
- "**/*_msgp*.go"
1814

1915
permissions:
2016
contents: read

0 commit comments

Comments
 (0)