add back commit step

This commit is contained in:
zack 2024-10-19 20:35:18 -04:00
parent c5cf0f10b6
commit eccb046bea
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35

View file

@ -50,6 +50,13 @@ jobs:
run: |
git diff --exit-code flake.lock || echo "CHANGED=true" >> $GITHUB_OUTPUT
- name: Commit changes
if: steps.git-check.outputs.CHANGED == 'true'
run: |
git add flake.lock
git commit -m "chore: update flake"
git push origin ${{ env.BRANCH_NAME }}
- name: Create Pull Request
if: steps.git-check.outputs.CHANGED == 'true'
id: create-pr