RELEASE.md: document PGXN_REMOTE for tag/dist targets - #52
Open
jnasbyupgrade wants to merge 1 commit into
Open
Conversation
This repo's clone typically has origin pointing at a personal fork with the canonical Postgres-Extensions/cat_tools repo configured as a separate upstream remote. make tag/rmtag/forcetag/dist push to origin by default, so without PGXN_REMOTE=upstream they silently tag the fork instead -- exactly what happened when the 0.2.3 release tag was first cut, requiring a manual re-point. pgxntool 2.2.0 added PGXN_REMOTE to fix this (Postgres-Extensions/pgxntool#53); document using it.
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
jnasbyupgrade
added a commit
to Postgres-Extensions/pg_count_nulls
that referenced
this pull request
Jul 30, 2026
…ttern Hardcoding PGXN_REMOTE = upstream in the Makefile bakes in an assumption specific to this maintainer's clone (that origin is the jnasbyupgrade fork), which doesn't generalize to anyone else's checkout. Following Postgres-Extensions/cat_tools#52: leave the Makefile untouched (PGXN_REMOTE still defaults to origin via pgxntool's base.mk) and instead document in RELEASE.md that whoever runs the release should pass PGXN_REMOTE=upstream on the command line when their origin is a personal fork.
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.
This repo's clone typically has
originpointing at a personal fork with the canonicalPostgres-Extensions/cat_toolsrepo configured as a separateupstreamremote.make tag/rmtag/forcetag/distpush tooriginby default, so withoutPGXN_REMOTE=upstreamthey silently tag the fork instead -- exactly what happened when the 0.2.3 release tag was first cut, requiring a manual re-point.pgxntool 2.2.0 (synced in #51) added
PGXN_REMOTEto fix this (Postgres-Extensions/pgxntool#53); this documents using it in the release checklist.