From 935e8049a6c56af1eaac5a45323f9bf33aa9eec6 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 1 Oct 2025 15:23:55 +0200 Subject: [PATCH 1/2] chore: update Docker version information in PR body --- .github/workflows/github-docker-registry-push.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github-docker-registry-push.yml b/.github/workflows/github-docker-registry-push.yml index cbee7083..132f19c1 100644 --- a/.github/workflows/github-docker-registry-push.yml +++ b/.github/workflows/github-docker-registry-push.yml @@ -76,13 +76,16 @@ jobs: # Create PR with explicit title and body instead of --fill gh pr create \ --title "chore: update Docker versions" \ - --body "Automated update of docker-versions.txt with current Docker and Docker Compose versions. + --body "$(cat <<'EOF' +Automated update of docker-versions.txt with current Docker and Docker Compose versions. **Changes:** - Updated Docker version information - Updated Docker Compose version information -This PR only contains changes to \`docker-versions.txt\` and no other files." \ +This PR only contains changes to \`docker-versions.txt\` and no other files. +EOF +)" \ --base main \ --head "$BRANCH_NAME" fi From 0c1ccb66d2c0bee53763a2b566457b5d90098939 Mon Sep 17 00:00:00 2001 From: Bruno Verachten Date: Wed, 1 Oct 2025 15:28:04 +0200 Subject: [PATCH 2/2] chore: streamline PR creation for Docker version updates --- .github/workflows/github-docker-registry-push.yml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/.github/workflows/github-docker-registry-push.yml b/.github/workflows/github-docker-registry-push.yml index 132f19c1..ec512dc0 100644 --- a/.github/workflows/github-docker-registry-push.yml +++ b/.github/workflows/github-docker-registry-push.yml @@ -74,20 +74,7 @@ jobs: git commit -m "chore: update Docker versions" git push origin "$BRANCH_NAME" # Create PR with explicit title and body instead of --fill - gh pr create \ - --title "chore: update Docker versions" \ - --body "$(cat <<'EOF' -Automated update of docker-versions.txt with current Docker and Docker Compose versions. - -**Changes:** -- Updated Docker version information -- Updated Docker Compose version information - -This PR only contains changes to \`docker-versions.txt\` and no other files. -EOF -)" \ - --base main \ - --head "$BRANCH_NAME" + gh pr create --title "chore: update Docker versions" --body "Automated update of docker-versions.txt with current Docker and Docker Compose versions." --base main --head "$BRANCH_NAME" fi fi