From e1f5cdcd467f74f0086cc999d104e13bfc0b17c3 Mon Sep 17 00:00:00 2001 From: Adam Wolfe Gordon Date: Tue, 16 Jun 2026 11:25:31 -0600 Subject: [PATCH 1/2] ci: Make cli-docs-bot the author of docs update commits The Signed-off-by line should match the commit author, and this also makes it clearer that the docs update was automated rather than being done by a human. Signed-off-by: Adam Wolfe Gordon --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b9983836..575e5fc3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -264,6 +264,7 @@ jobs: Update master CLI reference docs for ${{ needs.build-artifacts.outputs.version }} Signed-off-by: cli-docs-bot + author: cli-docs-bot title: Update master CLI reference docs for ${{ needs.build-artifacts.outputs.version }} # We use a static branch name so that if an existing PR is already # open it gets updated, rather than opening a sequence of PRs of which From a80988b3a247d1ab1d41624ea3e2465348ea52f2 Mon Sep 17 00:00:00 2001 From: Adam Wolfe Gordon Date: Tue, 16 Jun 2026 12:40:06 -0600 Subject: [PATCH 2/2] ci: Configure the create-pull-request action to sign off on commits Signed-off-by: Adam Wolfe Gordon --- .github/workflows/ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 575e5fc3..5491b1ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -260,11 +260,9 @@ jobs: with: token: ${{ steps.generate-token.outputs.token }} path: ./docs - commit-message: | - Update master CLI reference docs for ${{ needs.build-artifacts.outputs.version }} - - Signed-off-by: cli-docs-bot + commit-message: Update master CLI reference docs for ${{ needs.build-artifacts.outputs.version }} author: cli-docs-bot + signoff: true title: Update master CLI reference docs for ${{ needs.build-artifacts.outputs.version }} # We use a static branch name so that if an existing PR is already # open it gets updated, rather than opening a sequence of PRs of which