-
-
Notifications
You must be signed in to change notification settings - Fork 299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ci(docker): Add latest tag for v* release tags and modify push events #229
Conversation
Run & review this pull request in StackBlitz Codeflow. |
📝 WalkthroughWalkthroughThe pull request introduces modifications to two GitHub Actions workflow files: Changes
Possibly related PRs
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (1)
🔇 Additional comments (1).github/workflows/docker.yml (1)
The semantic versioning pattern Let's verify the existing tags in the repository to ensure they match this pattern: ✅ Verification successful✅ Version tag pattern matches existing repository tags The verification confirms that the repository uses semantic versioning tags that perfectly match the pattern 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check existing version tags for compatibility with the new trigger pattern
# List all tags and validate against the pattern
git ls-remote --tags origin | grep -o 'refs/tags/.*' | cut -d/ -f3 | grep -E '^v[0-9]+\.[0-9]+\.[0-9]+$' || echo "No matching version tags found"
Length of output: 512 Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #229 +/- ##
=======================================
Coverage 92.07% 92.07%
=======================================
Files 44 44
Lines 2058 2058
Branches 450 450
=======================================
Hits 1895 1895
Misses 163 163 ☔ View full report in Codecov by Sentry. |
Checklist
npm run test
npm run lint