fix: 🐛 Fix tags not triggering github create event - #316
Conversation
🦋 Changeset detectedLatest commit: 55e26c0 The changes in this PR will be included in the next version bump. This PR includes changesets to release 1 package
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
We are experiencing the same problem when we have a GitHub workflow triggered on a pushed tag. The workflow is not triggered when the changesets action pushes more than 3 tags. |
|
@tedraykov To unblock our CI, we released a private fork with this fix in, and reference that in our action instead: - name: Create Release Pull Request
uses: <org>/changesets-action@<tag>We built it locally, so there was a |
|
Also encountering the same issue. Any mono-repo will eventually face the problem. |
|
We now push tags one by one since #391, and we've also switched to pushing through the GitHub CLI by default, so I think this is resolved. |
We've been loving changesets!
However, I think I finally tracked down an issue we were having.
Our monorepo has a cloudbuild trigger listening to tags, but github doesn't create a
Createevent when more than 3 tags are created at once... which is unfortunate when we have changes in 5 of our apps...I did a local test to confirm that as long as tags are pushed one at a time, they all trigger github events.
Let me know if anything should be adjusted or if I didn't account for something!