You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
run: upgrade-provider "${{ github.repository }}" --kind="all" --target-version="${{ steps.target_version.outputs.version }}" #{{ if .Config.javaGenVersion }}#--java-version="#{{ .Config.javaGenVersion }}#"#{{ end }}#
The --kind="all" flag is mixing bridge and upstream upgrades in a single change, which makes it harder to understand where changes are coming from and harder to bisect issues. Would it be possible to scope this to only upstream upgrades? And have a separate workflow handle upgrading the bridge
The text was updated successfully, but these errors were encountered:
Noticed this in pulumi/pulumi-aws#4752
https://github.com/pulumi/ci-mgmt/blob/master/provider-ci/internal/pkg/templates/bridged-provider/.github/workflows/upgrade-provider.yml#L83
The code:
The
--kind="all"
flag is mixing bridge and upstream upgrades in a single change, which makes it harder to understand where changes are coming from and harder to bisect issues. Would it be possible to scope this to only upstream upgrades? And have a separate workflow handle upgrading the bridgeThe text was updated successfully, but these errors were encountered: