Skip to content

Commit

Permalink
Merge pull request #1698 from SaschaSchwarze0/sascha-github-action-co…
Browse files Browse the repository at this point in the history
…mmit-author

Configure commit author, signing and signoff in GitHub action for image updates
  • Loading branch information
openshift-merge-bot[bot] authored Oct 29, 2024
2 parents 5ce19a9 + 46d17d8 commit 6049152
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/check-latest-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -51,5 +61,3 @@ jobs:
NONE
```
labels: kind/dependency-change
branch: ${{ matrix.image }}
delete-branch: true

0 comments on commit 6049152

Please sign in to comment.