Trigger pipeline #374
-
|
I have the issue, that after I commit a message with this action, it will not trigger the pipeline. Here are the relevant parts of my yaml file. name: Documentation
run-name: Checking ${{ github.actor }}'s documentation files
on:
pull_request:
types:
- opened
- synchronize
- ready_for_review
- reopened
fix-formatting:
needs: check-formatting
runs-on: ubuntu-latest
name: Fix Formatting
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
...
- name: Commit changes
uses: stefanzweifel/git-auto-commit-action@v5
with:
id: auto-commit-action
commit_message: "ci: fix LaTeX formatting"So as mentioned, this will create a commit with the fixed files, but the new commit will not trigger the pipeline. |
Beta Was this translation helpful? Give feedback.
Answered by
stefanzweifel
May 24, 2025
Replies: 1 comment 1 reply
-
|
You have to switch to a personal access token to make this work. Check out the README for more information. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You have to switch to a personal access token to make this work. Check out the README for more information.
https://github.com/stefanzweifel/git-auto-commit-action#commits-made-by-this-action-do-not-trigger-new-workflow-runs