Add --no-verify option to prevent git hooks run (#5)

This commit is contained in:
Ivan 2023-05-24 11:53:55 +02:00 committed by GitHub
parent 1e9f21d782
commit 967035ce96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -107,8 +107,8 @@ jobs:
working-directory: ./target working-directory: ./target
run: | run: |
git add . git add .
git commit -m "Update configuration files" git commit -m "Update configuration files" --no-verify
git push origin ${{inputs.head-pr-branch}} -f git push origin ${{inputs.head-pr-branch}} -f --no-verify
- name: Check PR existence - name: Check PR existence
if: ${{ steps.successful-update.outputs.STATUS == 'true' }} if: ${{ steps.successful-update.outputs.STATUS == 'true' }}