Skip to content

Commit b34cfd5

Browse files
committed
fix(workflows): sign commit messages in backfill and manifest workflows
Signed-off-by: Adilhusain Shaikh <[email protected]>
1 parent 1fe8f0a commit b34cfd5

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/backfill-manifests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ jobs:
170170
git config user.name "github-actions[bot]"
171171
git config user.email "github-actions[bot]@users.noreply.github.com"
172172
git add versions-manifests/*.json
173-
git commit -m "Backfill manifests from workflow run [skip ci]"
173+
git commit -s -m "Backfill manifests from workflow run [skip ci]"
174174
echo "committed=true" >> "$GITHUB_OUTPUT"
175175
else
176176
echo "No manifest changes detected"

.github/workflows/generate_tar.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ jobs:
200200
git add -- "${f}"
201201
done
202202
if ! git diff --cached --quiet; then
203-
git commit -m "Add/update powershell-gen tar for ${{ steps.get_tag_extract.outputs.pwsh_tag }}"
203+
git commit -s -m "Add/update powershell-gen tar for ${{ steps.get_tag_extract.outputs.pwsh_tag }}"
204204
git push "https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git" "HEAD:${GITHUB_REF#refs/heads/}"
205205
else
206206
echo "No changes to commit."

.github/workflows/merge-manifest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ jobs:
5555
- name: Commit and push main manifest
5656
run: |
5757
git add versions-manifest.json
58-
git commit -m "Update main manifest [skip ci]" || echo "No changes to commit"
58+
git commit -s -m "Update main manifest [skip ci]" || echo "No changes to commit"
5959
git push

.github/workflows/release-latest-python-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ jobs:
126126
git config user.name "github-actions[bot]"
127127
git config user.email "github-actions[bot]@users.noreply.github.com"
128128
git add versions-manifests/*.json
129-
git commit -m "Apply manifest partials [skip ci]"
129+
git commit -s -m "Apply manifest partials [skip ci]"
130130
echo "committed=true" >> "$GITHUB_OUTPUT"
131131
else
132132
echo "No manifest changes detected"

.github/workflows/release-matching-python-tags.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ jobs:
153153
git config user.name "github-actions[bot]"
154154
git config user.email "github-actions[bot]@users.noreply.github.com"
155155
git add versions-manifests/*.json
156-
git commit -m "Apply manifest partials [skip ci]"
156+
git commit -s -m "Apply manifest partials [skip ci]"
157157
echo "committed=true" >> "$GITHUB_OUTPUT"
158158
else
159159
echo "No manifest changes detected"

0 commit comments

Comments
 (0)