ci: change commit signing method for daily updates

This commit is contained in:
Jared Allard 2024-02-19 16:59:24 -08:00
parent c0d6f5971d
commit 707690b09e
Signed by: jaredallard
SSH key fingerprint: SHA256:wyRyyv28jBYw8Yp/oABNPUYvbGd6hyZj23XVXEm5G/U

View file

@ -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}}