This message was deleted.
# general
s
This message was deleted.
m
oh, maybe I’m thinking of it incorrectly, there should be a
.pulumi/ci.json
for each project in the repo, not at the repo root.
Nope… it expects it at the root:
Copy code
error: no Pulumi.yaml found; please run this command in a project directory
No stack configured for branch 'master'

To configure this branch, please
	1) Run 'pulumi stack init <stack-name>'
	2) Associated the stack with the branch by adding
		{
			"master": "<stack-name>"
		}
	to your .pulumi/ci.json file

For now, exiting cleanly without doing anything...
I found a solution, setting
PULUMI_ROOT
and explicitly setting
--stack
instead of using on a ci.json: https://github.com/pulumi/pulumi/blob/efe7a599e65637378b9ceeac125386b5effd0d68/dist/actions/entrypoint.sh#L50-L51 I tried using
--cwd
but it did not work with the action.