We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11bd58b commit d0a626eCopy full SHA for d0a626e
.github/actions/auto-commit/action.yml
@@ -39,6 +39,7 @@ runs:
39
NEW_PR_BRANCH: ${{ inputs.branch-name }}
40
COMMIT_MESSAGE: ${{ inputs.commit-message }}
41
COMMIT_FILES: ${{ inputs.commit-files }}
42
+ HUSKY: 0 # Disable Husky hooks in CI
43
run: |
44
git config --global user.name "github-actions[bot]"
45
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
@@ -47,7 +48,7 @@ runs:
47
48
git add $COMMIT_FILES
49
50
# We can't use semantic commits here because of the if statement in the workflow
- git commit --no-verify --message "$COMMIT_MESSAGE"
51
+ git commit --message "$COMMIT_MESSAGE"
52
git push --force origin "$NEW_PR_BRANCH"
53
54
- name: 🪗 Create Pull Request
0 commit comments