diff --git a/.github/workflows/workflow-lint-test-python.yml b/.github/workflows/workflow-lint-test-python.yml index dcdf087..3430ccf 100644 --- a/.github/workflows/workflow-lint-test-python.yml +++ b/.github/workflows/workflow-lint-test-python.yml @@ -88,12 +88,11 @@ jobs: with: token: ${{ secrets.GITHUB_TOKEN }} - - name: Commit changes + - name: Push changes if: steps.compare_values.outputs.update_value == 'true' - uses: EndBug/add-and-commit@v9 - with: - default_author: github_actions - message: 'Update threshold' - add: '.github/workflows/gcp-deployment.yml' - env: - GITHUB_TOKEN: ${{ secrets.TOKEN_COMMIT_PR }} + run: | + git config --global user.name "GitHub bot" + git config --global user.email "github@bot.com" + git add -A + git commit -m "Update threshold value in workflow" + git push