I'm trying to manage Pulumi Deployments via Pulumi...
# pulumi-deployments
c
I'm trying to manage Pulumi Deployments via Pulumi and my preview looks good but on apply it fails with a 500 API error without anything useful to use as breadcrumbs. I'm new to managing Deployments with Pulumi, but for all intents and purposes I'm following the docs for Go here: https://www.pulumi.com/registry/packages/pulumiservice/api-docs/deploymentsettings/
r
hey! sorry you're running into issues here. can you provide a code sample or any other information that might help me narrow down the issue?
c
Untitled
r
Looping back, we sorted this out over DM. The issue was: • repositoryName should just be
{org}/{repo}
- will update this in the docs to add an example • branch needs to be fully qualified
refs/heads/main
instead of just
main
(currently in the process of relaxing this requirement so we can accept short branch names)
c
Thank you again @red-match-15116!