From 707690b09ed2e11bc6c4cd701b6d000ab376a373 Mon Sep 17 00:00:00 2001 From: Jared Allard Date: Mon, 19 Feb 2024 16:59:24 -0800 Subject: [PATCH] ci: change commit signing method for daily updates --- .github/workflows/update.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/update.yaml b/.github/workflows/update.yaml index 68ce171..4f4385c 100644 --- a/.github/workflows/update.yaml +++ b/.github/workflows/update.yaml @@ -24,11 +24,11 @@ jobs: run: mise run update - name: Run linter run: mise run lint - - name: Create commit + - uses: planetscale/ghcommit-action@v0.1.6 if: github.event_name == 'schedule' - # TODO(jaredallard): The updater should handle this so we're - # more aware of what's being committed. - run: |- - git add -A . - git commit -am 'update ebuilds via updater' - git push + with: + commit_message: "chore: update dependencies" + repo: ${{ github.repository }} + branch: "main" + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}