Update Versions triggers Auto to run again #2264
-
I feel like I am missing something here, but the "Update Versions" commit that Auto is creating, seems to be running auto again. I would have thought it would have Seems like it changed recently but I am not sure why. Is this expected behaviour? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Seems like https://github.com/intuit/auto/blob/main/plugins/npm/src/index.ts#L531 should include |
Beta Was this translation helpful? Give feedback.
-
If you are using GitHub Actions, you must add the if condition to your job. if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')" You can find it in an example workflow file https://intuit.github.io/auto/docs/build-platforms/github-actions. |
Beta Was this translation helpful? Give feedback.
If you are using GitHub Actions, you must add the if condition to your job.
You can find it in an example workflow file https://intuit.github.io/auto/docs/build-platforms/github-actions.