This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
Remove Registry module and await in-progress workflows #3547
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.
As a follow-up to https://github.com/pulumi/pulumi-hugo-private/issues/112, this change does a couple of things, both aimed at reducing the likelihood of the merge conflicts we see when running the
push
andupstream-sync
workflows:hugo mod get
that attempts to pull in the latest from pulumi/registry (along with the reference to that module in the Hugo config). There's no technical need to import this module, particularly since the Registry now runs as a completely separate app; the only purpose it serves is to show something at /registry in PR previews and in local development. (Removing this therefore means navigating to /registry in PR previews and in local development will 404, but I'm assuming that won't cause too much pain for contributors to this repo.)push
workflows to finish before running the current one. This will ensure thatpush
workflows always complete in the order in which they're merged (so that multiple merges that happen in proximity won't run into the same class of problem by producing CSS and JS bundles out of sequence). This is the same script we use in pulumi/docs for this purpose.