diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml index f9713a198..29cc98953 100644 --- a/.github/workflows/generate.yml +++ b/.github/workflows/generate.yml @@ -2,11 +2,8 @@ name: generate on: push: - branches-ignore: - - production - pull_request: - branches-ignore: - - production + branches: + - dev workflow_dispatch: jobs: @@ -39,15 +36,16 @@ jobs: git config --local user.name "GitHub Action" git add -A git commit -m "chore: generate" - if ! git push origin HEAD:${{ github.event.pull_request.head.ref || github.ref_name }} --no-verify; then - echo "" - echo "============================================" - echo "Failed to push generated code." - echo "Please run locally and push:" - echo "" - echo " ./script/generate.ts" - echo " git add -A && git commit -m \"chore: generate\" && git push" - echo "" - echo "============================================" - exit 1 - fi + git push origin HEAD:${{ github.ref_name }} --no-verify + # if ! git push origin HEAD:${{ github.event.pull_request.head.ref || github.ref_name }} --no-verify; then + # echo "" + # echo "============================================" + # echo "Failed to push generated code." + # echo "Please run locally and push:" + # echo "" + # echo " ./script/generate.ts" + # echo " git add -A && git commit -m \"chore: generate\" && git push" + # echo "" + # echo "============================================" + # exit 1 + # fi