Skip to content
This repository was archived by the owner on Oct 15, 2025. It is now read-only.

Commit 6066b40

Browse files
Merge pull request #19 from tumido/trigger-release-as-bumper
chore: run chart releases as bumper bot, so we can trigger workflows from it
2 parents 1062126 + 1ace5f1 commit 6066b40

1 file changed

Lines changed: 10 additions & 5 deletions

File tree

.github/workflows/release.yaml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,16 @@ jobs:
2424
persist-credentials: true
2525

2626
- name: Configure Git
27-
env:
28-
GITHUB_ACTOR: ${{ github.actor }}
2927
run: |
30-
git config user.name "$GITHUB_ACTOR"
31-
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
28+
git config user.name "BUMPER bot (llm-d)"
29+
git config user.email "1229152+bumper-bot-llm-d@users.noreply.github.com"
30+
31+
- name: Generate token
32+
id: generate_token
33+
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2
34+
with:
35+
app_id: "1229152"
36+
private_key: ${{ secrets.BUMPER_GITHUB_APP_PRIVATE_KEY }}
3237

3338
- name: Add dependencies
3439
run: |
@@ -39,7 +44,7 @@ jobs:
3944
with:
4045
config: cr.yaml
4146
env:
42-
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }}
47+
CR_TOKEN: ${{ steps.generate_token.outputs.token }}
4348

4449
- name: Login to GitHub Container Registry
4550
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0

0 commit comments

Comments
 (0)