Skip to content

Commit 53b26e3

Browse files
committed
chore: add release-please
Signed-off-by: Jakob Steiner <[email protected]>
1 parent ce49c24 commit 53b26e3

File tree

3 files changed

+111
-0
lines changed

3 files changed

+111
-0
lines changed

.github/workflows/release.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Release Please
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
workflow_dispatch:
8+
9+
jobs:
10+
release-please:
11+
timeout-minutes: 1
12+
runs-on: ubuntu-latest
13+
permissions:
14+
contents: write
15+
pull-requests: write
16+
outputs:
17+
releases_created: ${{ steps.release-please.outputs.releases_created }}
18+
tag_name: ${{ steps.release-please.outputs.tag_name }}
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
22+
- name: Release Please
23+
id: release-please
24+
uses: googleapis/release-please-action@7987652d64b4581673a76e33ad5e98e3dd56832f # v4.1.3
25+
with:
26+
token: ${{ secrets.GLASSKUBE_BOT_SECRET }}

.release-please-manifest.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "0.0.0"
3+
}

release-please-config.json

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
{
2+
"bootstrap-sha": "0dcb6537405096ec6415b5e81daa6568323e9833",
3+
"packages": {
4+
".": {
5+
"include-v-in-tag": false,
6+
"release-type": "go",
7+
"prerelease": false,
8+
"draft": false,
9+
"bump-minor-pre-major": true,
10+
"bump-patch-for-minor-pre-major": false,
11+
"extra-files": [
12+
"README.md",
13+
{
14+
"type": "yaml",
15+
"path": "deploy/cert-manager-webhook-exoscale/Chart.yaml",
16+
"jsonpath": "$.version"
17+
},
18+
{
19+
"type": "yaml",
20+
"path": "deploy/cert-manager-webhook-exoscale/Chart.yaml",
21+
"jsonpath": "$.appVersion"
22+
}
23+
],
24+
"changelog-sections": [
25+
{
26+
"type": "feat",
27+
"section": "Features"
28+
},
29+
{
30+
"type": "fix",
31+
"section": "Bug Fixes"
32+
},
33+
{
34+
"type": "chore",
35+
"section": "Other"
36+
},
37+
{
38+
"type": "docs",
39+
"section": "Docs"
40+
},
41+
{
42+
"type": "perf",
43+
"section": "Performance"
44+
},
45+
{
46+
"type": "build",
47+
"hidden": true,
48+
"section": "Build"
49+
},
50+
{
51+
"type": "deps",
52+
"section": "Dependency Updates"
53+
},
54+
{
55+
"type": "ci",
56+
"hidden": true,
57+
"section": "CI"
58+
},
59+
{
60+
"type": "refactor",
61+
"section": "Refactoring"
62+
},
63+
{
64+
"type": "revert",
65+
"hidden": true,
66+
"section": "Reverts"
67+
},
68+
{
69+
"type": "style",
70+
"hidden": true,
71+
"section": "Styling"
72+
},
73+
{
74+
"type": "test",
75+
"hidden": true,
76+
"section": "Tests"
77+
}
78+
]
79+
}
80+
},
81+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
82+
}

0 commit comments

Comments
 (0)