ci: Exclude the nightly tags when filtering unseen commits#179
ci: Exclude the nightly tags when filtering unseen commits#179lens0021 wants to merge 2 commits intoamber-lang:mainfrom
Conversation
📝 WalkthroughWalkthroughThe prerelease workflow now selects the latest tag using a version-aware sort and filters out nightly tags ( Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
No actionable comments were generated in the recent review. 🎉 Comment |
|
@lens0021 is attempting to deploy a commit to the Marble Team on Vercel. A member of the Team first needs to authorize it. |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Fix all issues with AI agents
In @.github/workflows/prerelease.yml:
- Line 26: The current LATEST_TAG assignment uses plain `git tag`, which sorts
lexicographically; update the command that sets LATEST_TAG to use version-aware
sorting by adding `--sort=version:refname` so the pipeline picks the latest
semantic version (e.g., replace the `git tag | grep -v nightly | tail` pipeline
referenced by LATEST_TAG with a `git tag --sort=version:refname | grep -v
nightly | tail -n1` variant).
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
The workflow tell us which commits are missing in the documentations. Currently, it is not so useful because
nightlyandstagingare too close.Summary by CodeRabbit