From fc47bc788a78c99194918dd625dd000aff7796e4 Mon Sep 17 00:00:00 2001 From: Kevin Hoerr Date: Fri, 18 Nov 2022 21:48:34 -0500 Subject: Use verifying commit workflow (#5) --- .github/workflows/build.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to '.github') diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 288c855..749af33 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,10 +23,11 @@ jobs: - run: npm ci - run: npm run build --if-present - name: Commit public changes - uses: EndBug/add-and-commit@v9 + uses: swinton/commit@v2.x + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - add: 'public' - author_name: "Kevin J Hoerr" - author_email: "kjhoerr@protonmail.com" - commit: --signoff - message: 'Commit from GitHub Actions (updated public build)' + files: | + public + commit-message: 'Commit from GitHub Actions (updated public build)' + ref: refs/heads/trunk -- cgit