Skip to content

Commit 0278f40

Browse files
authored
Merge pull request #101 from opencloud-eu/ready-release-go
feat: add ready release go
2 parents ab7fac4 + efcf8e2 commit 0278f40

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed

.woodpecker/release.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
3+
when:
4+
event: push
5+
branch: ${CI_REPO_DEFAULT_BRANCH}
6+
7+
steps:
8+
release-helper:
9+
image: woodpeckerci/plugin-ready-release-go:latest
10+
settings:
11+
git_email: devops@opencloud.eu
12+
forge_type: github
13+
forge_token:
14+
from_secret: github_token

release-config.ts

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
export default {
2+
changeTypes: [
3+
{
4+
title: '💥 Breaking changes',
5+
labels: ['breaking', 'Type:Breaking-Changes'],
6+
bump: 'major',
7+
weight: 3,
8+
},
9+
{
10+
title: '🔒 Security',
11+
labels: ['security', 'Type:Security'],
12+
bump: 'patch',
13+
weight: 2,
14+
},
15+
{
16+
title: '✨ Features',
17+
labels: ['feature', 'Type:Feature'],
18+
bump: 'minor',
19+
weight: 1,
20+
},
21+
{
22+
title: '📈 Enhancement',
23+
labels: ['enhancement', 'refactor', 'Type:Enhancement'],
24+
bump: 'minor',
25+
},
26+
{
27+
title: '🐛 Bug Fixes',
28+
labels: ['bug', 'Type:Bug'],
29+
bump: 'patch',
30+
},
31+
{
32+
title: '📚 Documentation',
33+
labels: ['docs', 'documentation', 'Type:Documentation'],
34+
bump: 'patch',
35+
},
36+
{
37+
title: '📦️ Dependency',
38+
labels: ['dependency', 'dependencies', 'Type:Dependencies'],
39+
bump: 'patch',
40+
weight: -1,
41+
},
42+
],
43+
};

0 commit comments

Comments
 (0)