Remove temporary state-delete step from deploy workflow - #186
Merged
Merged
Conversation
e9e9f1b added a one-off 'pulumi state delete' to the Deploy to Production step to drop the stale RepositoryCollaborators resource for the renamed experimental-ext-skills repo, with a note to remove it after one green deploy. Deploys have been green since run #257 (2026-09-10), so the URN no longer exists in state and the command is a no-op guarded by '|| true'. Remove it so the deploy step runs 'make up' as before. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01H4JKj5FVkmj6bRzgh1GPrY
Pulumi PreviewClick to expand preview output |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Requested by Den Delimarsky · Slack thread
Before:
deploy.ymlstill runs a one-offpulumi state deletefor the renamed experimental-ext-skillsRepositoryCollaboratorsresource on every deploy. It was added in e9e9f1b to unblock run #257 with a note to remove it after one green deploy; deploys have been green since, so the URN no longer exists in state and the command is a no-op guarded by|| true.After: The
# TEMPcomment andpulumi state deleteline are gone; the Deploy to Production step logs in, sets config, and runsmake upas before.How: Removed exactly the three lines that e9e9f1b added to
.github/workflows/deploy.yml(the file is now byte-identical to its pre-e9e9f1b blob); YAML parses andnpm run checkpasses.🤖 Generated with Claude Code
https://claude.ai/code/session_01H4JKj5FVkmj6bRzgh1GPrY
Generated by Claude Code