Skip to content

Commit d4d7225

Browse files
committed
chore: add release-please and renovate
Signed-off-by: Tyler Auerbeck <tylerauerbeck@users.noreply.github.com>
1 parent fd915c3 commit d4d7225

3 files changed

Lines changed: 40 additions & 0 deletions

File tree

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
6+
permissions:
7+
contents: write
8+
pull-requests: write
9+
10+
name: release-please
11+
jobs:
12+
release-please:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout Code
16+
uses: actions/checkout@v6
17+
with:
18+
fetch-depth: 0
19+
20+
- name: Release Plz
21+
uses: googleapis/release-please-action@v4
22+
id: release
23+
with:
24+
token: ${{ secrets.RP_TOKEN }}
25+
config-file: release-please-config.json
26+
manifest-file: .release-please-manifest.json

release-please-config.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"$schema": "https://github.com/googleapis/release-please/releases/latest/schema.json",
3+
"release-type": "helm",
4+
"packages": {
5+
".": {}
6+
}
7+
}

renovate.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": [
4+
"config:recommended",
5+
"helpers:pinGitHubActionDigests"
6+
]
7+
}

0 commit comments

Comments
 (0)