From e1e202cf5488775be9c6dd5a598228294b90f0a1 Mon Sep 17 00:00:00 2001 From: sanja <52755494+sanjacornelius@users.noreply.github.com> Date: Wed, 18 Feb 2026 11:48:20 -0800 Subject: [PATCH] Add github action signature for commits --- .github/workflows/generate_index.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/generate_index.yml b/.github/workflows/generate_index.yml index 3dcdfe6..28603f4 100644 --- a/.github/workflows/generate_index.yml +++ b/.github/workflows/generate_index.yml @@ -30,10 +30,11 @@ jobs: run: php .github/workflows/scripts/generate_index.php if: env.COMMITTER != 'action@github.com' + - uses: chainguard-dev/actions/setup-gitsign@main - name: Commit and push if it changed run: | git diff git config --local user.email "action@github.com" git config --local user.name "GitHub Action" - git commit -am "Update index.json and README.md" || exit 0 + git commit -S -am "Update index.json and README.md" || exit 0 git push