-
Notifications
You must be signed in to change notification settings - Fork 6
remove constraint for True Tokenless #181
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -50,7 +50,7 @@ export const getPreSignedURL = async ({ | |
| * proper tokenless upload. | ||
| * See: https://github.com/codecov/codecov-api/pull/741 | ||
| */ | ||
| if (!uploadToken && serviceParams.branch?.includes(":")) { | ||
| if (!uploadToken) { | ||
|
||
| if (gitService) { | ||
|
||
| requestBody.git_service = gitService; | ||
| } else { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing this condition means the format of the branch is no longer checked. Has the branch check been moved elsewhere, or is it no longer needed? If not necessary anymore, kindly disregard the comment.