-
-
Notifications
You must be signed in to change notification settings - Fork 28
[#1428] Updated deployment bypass mechanism to use list-based variables. #2088
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
Conversation
|
Warning Rate limit exceeded@AlexSkrypnyk has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 2 minutes and 12 seconds before requesting another review. ⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ⛔ Files ignored due to path filters (2)
📒 Files selected for processing (7)
✨ Finishing touches
🧪 Generate unit tests (beta)
Comment |
817edd7 to
a249134
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## develop #2088 +/- ##
===========================================
+ Coverage 67.46% 67.92% +0.45%
===========================================
Files 94 94
Lines 4617 4614 -3
Branches 44 44
===========================================
+ Hits 3115 3134 +19
+ Misses 1502 1480 -22 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
a249134 to
33fdfc5
Compare
- Replaced individual `VORTEX_DEPLOY_SKIP_PR_<NUMBER>` and `VORTEX_DEPLOY_SKIP_BRANCH_<SAFE_BRANCH>` variables with comma-separated list variables - Added `VORTEX_DEPLOY_SKIP_PRS` for PR numbers (single or comma-separated) - Added `VORTEX_DEPLOY_SKIP_BRANCHES` for branch names (single or comma-separated) - Updated `scripts/vortex/deploy.sh` with new list-based skip logic - Updated PHPUnit tests to cover new skip scenarios - Updated documentation for deployment workflows and variables - Updated GitHub Actions workflow to include new environment variables - Updated CI variables configuration - Updated installer baseline fixtures This is a breaking change. Projects using the old mechanism will need to migrate from: VORTEX_DEPLOY_SKIP_PR_123: "1" VORTEX_DEPLOY_SKIP_BRANCH_FEATURE_TEST: "1" To: VORTEX_DEPLOY_ALLOW_SKIP: "1" VORTEX_DEPLOY_SKIP_PRS: "123" VORTEX_DEPLOY_SKIP_BRANCHES: "feature/test"
33fdfc5 to
55ee9c2
Compare
Closes #1482
VORTEX_DEPLOY_SKIP_PR_<NUMBER>andVORTEX_DEPLOY_SKIP_BRANCH_<SAFE_BRANCH>variables with comma-separated list variablesVORTEX_DEPLOY_SKIP_PRSfor PR numbers (single or comma-separated)VORTEX_DEPLOY_SKIP_BRANCHESfor branch names (single or comma-separated)scripts/vortex/deploy.shwith new list-based skip logicMigration
This is a breaking change. Projects using the old mechanism will need to migrate from:
To: