From 967035ce963867fb956a309c9b67512314bc7c1f Mon Sep 17 00:00:00 2001 From: Ivan <98037481+IvanZosimov@users.noreply.github.com> Date: Wed, 24 May 2023 11:53:55 +0200 Subject: [PATCH] Add --no-verify option to prevent git hooks run (#5) --- .github/workflows/update-config-files.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-config-files.yml b/.github/workflows/update-config-files.yml index 2a72aa6..16101ac 100644 --- a/.github/workflows/update-config-files.yml +++ b/.github/workflows/update-config-files.yml @@ -107,8 +107,8 @@ jobs: working-directory: ./target run: | git add . - git commit -m "Update configuration files" - git push origin ${{inputs.head-pr-branch}} -f + git commit -m "Update configuration files" --no-verify + git push origin ${{inputs.head-pr-branch}} -f --no-verify - name: Check PR existence if: ${{ steps.successful-update.outputs.STATUS == 'true' }}