From 46d17d8b6e95e818b912d9647419ca988c71a441 Mon Sep 17 00:00:00 2001 From: Sascha Schwarze Date: Sun, 27 Oct 2024 20:46:56 +0100 Subject: [PATCH] Configure commit author, signing and signoff Signed-off-by: Sascha Schwarze --- .github/workflows/check-latest-images.yaml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-latest-images.yaml b/.github/workflows/check-latest-images.yaml index bfc843cb8e..a541193c28 100644 --- a/.github/workflows/check-latest-images.yaml +++ b/.github/workflows/check-latest-images.yaml @@ -32,7 +32,17 @@ jobs: - name: Create pull request uses: peter-evans/create-pull-request@v7 with: + # Branch details: + branch: ${{ matrix.image }} + delete-branch: true + + # Commit details + author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> commit-message: Bump ${{ matrix.image }} from ${{ steps.image-diff.outputs.FROM }} to ${{ steps.image-diff.outputs.TO }} + sign-commits: true + signoff: true + + # PR details title: Bump ${{ matrix.image }} from ${{ steps.image-diff.outputs.FROM }} to ${{ steps.image-diff.outputs.TO }} body: | # Changes @@ -51,5 +61,3 @@ jobs: NONE ``` labels: kind/dependency-change - branch: ${{ matrix.image }} - delete-branch: true