Skip to content

Commit

Permalink
Merge pull request #148 from eclipse-thingweb/update-release-config
Browse files Browse the repository at this point in the history
chore: use Thingweb bot for release preparation
  • Loading branch information
JKRhb authored May 21, 2024
2 parents bec9601 + 96b69c3 commit c8e1e13
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/prepare-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ permissions:
contents: write
pull-requests: write

env:
BOT_USER_NAME: eclipse-thingweb-bot
BOT_EMAIL: [email protected]

jobs:
prepare-release:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -53,10 +57,11 @@ jobs:
id: cpr
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.BOT_TOKEN }}
commit-message: "chore(release): prepare release ${{ steps.version-number.outputs.version }}"
committer: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
committer: ${{ env.BOT_USER_NAME }} <${{ env.BOT_EMAIL }}>
author: ${{ env.BOT_USER_NAME }} <${{ env.BOT_EMAIL }}>

signoff: true
branch: next-release
delete-branch: true
Expand Down

0 comments on commit c8e1e13

Please sign in to comment.