From acc5ab89593726a795300a89765e21cea48b5cbe Mon Sep 17 00:00:00 2001 From: Kan-Ru Chen Date: Sun, 22 Mar 2026 08:23:44 +0900 Subject: [PATCH] ci: add authenticate-commits workflow --- .github/workflows/authenticate-commits.yml | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/authenticate-commits.yml diff --git a/.github/workflows/authenticate-commits.yml b/.github/workflows/authenticate-commits.yml new file mode 100644 index 0000000..82037e4 --- /dev/null +++ b/.github/workflows/authenticate-commits.yml @@ -0,0 +1,24 @@ +name: authenticate-commits +on: + pull_request: + types: [opened, reopened, synchronize] +jobs: + authenticate-commits: + runs-on: ubuntu-latest + + permissions: + contents: read + pull-requests: write + issues: write + + steps: + - name: Authenticating commits + uses: sequoia-pgp/authenticate-commits@v1 + env: + COMMENT: on-error + with: + # To reduce the workflow's verbosity, use 'on-error' + # to only post a comment when an error occurs, or 'never' to + # never post a comment. (In all cases the information is + # still available in the step's summary.) + comment: on-error