Revert "Set the bot username"
Some checks failed
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/go-generate Pipeline failed
ci/woodpecker/push/repo-checks Pipeline was successful

This reverts commit 08bd14d5f0.
This commit is contained in:
2026-04-20 22:31:47 +02:00
parent 674ffc982d
commit cf30d5f2f2

View File

@@ -21,7 +21,7 @@ steps:
- buf generate
- rm -rf ./target/pkg/*
- cp -r ./gen/go/* ./target/pkg
- name: Push the change
- name: Clone go repo
image: alpine
environment:
GITEA_USER: devops-bot
@@ -29,6 +29,8 @@ steps:
from_secret: gitea_repo_access
commands:
- apk update && apk add git
- git config user.name "woodpecker-ci"
- git config user.email "bot@badhouseplants.net"
- git -C ./target checkout $CI_COMMIT_BRANCH || git -C ./target checkout -b $CI_COMMIT_BRANCH
- git -C ./target add .
- |-