Conversation
|
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
There was a problem hiding this comment.
Pull Request Overview
This PR reverts CI/CD workflow changes by removing the BRANCH_NAME parameter and its associated logic from GitHub Actions workflows. The changes simplify the workflows by eliminating the branch name input parameter and reverting to using version-based references instead.
Key changes:
- Removal of BRANCH_NAME input parameter and environment variable from both workflows
- Simplification of checkout references to use VERSION instead of BRANCH_NAME
- Updated environment variable derivation logic to use VERSION directly
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| .github/workflows/run-tests-on-release.yml | Removes BRANCH_NAME input parameter and updates PR head and checkout references to use VERSION |
| .github/workflows/deploy-staging-and-prepare-release.yaml | Removes BRANCH_NAME parameter, simplifies environment setup, and updates variable references |
Comments suppressed due to low confidence (1)
.github/workflows/deploy-staging-and-prepare-release.yaml:1
- The checkout reference is using VERSION output, but the job outputs only define MINOR_VERSION and CUSTOM_VERSION. VERSION is not defined in the outputs section, which will cause this reference to be empty.
name: Deploy Dashboard to staging
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #5961 +/- ##
=========================================
Coverage 40.08% 40.08%
=========================================
Files 2474 2474
Lines 40256 40256
Branches 9187 8856 -331
=========================================
Hits 16138 16138
- Misses 22906 24091 +1185
+ Partials 1212 27 -1185 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Scope of the change