-
Notifications
You must be signed in to change notification settings - Fork 23
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
fix: Fix link to custom gh app for self-hosted #3492
Conversation
Bundle ReportChanges will decrease total bundle size by 210 bytes (-0.0%) ⬇️. This is within the configured threshold ✅ Detailed changes
|
Bundle ReportChanges will decrease total bundle size by 210 bytes (-0.0%) ⬇️. This is within the configured threshold ✅ Detailed changes
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. Additional details and impacted files@@ Coverage Diff @@
## main #3492 +/- ##
=======================================
Coverage 98.90% 98.90%
=======================================
Files 806 806
Lines 14471 14475 +4
Branches 4117 4111 -6
=======================================
+ Hits 14312 14317 +5
+ Misses 152 151 -1
Partials 7 7
Continue to review full report in Codecov by Sentry.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅ ✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #3492 +/- ##
=======================================
Coverage 98.90% 98.90%
=======================================
Files 806 806
Lines 14471 14475 +4
Branches 4117 4118 +1
=======================================
+ Hits 14312 14317 +5
+ Misses 152 151 -1
Partials 7 7
Continue to review full report in Codecov by Sentry.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #3492 +/- ##
=======================================
Coverage 98.90% 98.90%
=======================================
Files 806 806
Lines 14471 14475 +4
Branches 4110 4118 +8
=======================================
+ Hits 14312 14317 +5
+ Misses 152 151 -1
Partials 7 7
Continue to review full report in Codecov by Sentry.
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
✅ All tests successful. No failed tests found. @@ Coverage Diff @@
## main #3492 +/- ##
=======================================
Coverage 98.90% 98.90%
=======================================
Files 806 806
Lines 14471 14475 +4
Branches 4110 4118 +8
=======================================
+ Hits 14312 14317 +5
+ Misses 152 151 -1
Partials 7 7
Continue to review full report in Codecov by Sentry.
|
✅ Deploy preview for gazebo ready!Previews expire after 1 month automatically.
|
I'll wait for this before merging this - https://github.com/codecov/internal-issues/issues/1073 |
Self-hosted deployments (
config.IS_SELF_HOSTED
, for Dedicated Enterprise Cloud customers and self-hosted) cannot use the default GitHub codecov app that can be installed from this link:https://github.com/apps/codecov/installations/select_target
Instead, that slug
codecov
needs to be replaced by the custom GitHub app name as explained in our docs hereSo something like
https://github.com/apps/my-custom-app-name/installations/select_target
Note that the slug ("GitHub App Name") is a lowercase hyphen separated string version of the entered name
Update the "Install Codecov GitHub app" link in the header to redirect to the custom app based on the existing env var (
REACT_APP_GH_APP=my-custom-app-name
).Closes codecov/engineering-team#2251