Skip to content
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

airbyte-ci: don't require extra permissions or --is-ci flag to upload reports to GCS bucket #48824

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ def dagger_cloud_url(self) -> Optional[str]:

@property
def remote_storage_enabled(self) -> bool:
return self.is_ci and bool(self.ci_report_bucket) and bool(self.ci_gcp_credentials)
return bool(self.ci_report_bucket) and bool(self.ci_gcp_credentials)

def _should_send_status_check(self) -> bool:
should_send = self.is_pr or any(
Expand Down
Loading