Pin internal preset references to v1 tag#29
Merged
Conversation
Pin the nested 'github>smkwlab/.github' (default.json) references inside latex.json and elixir.json to the moving major tag #v1, so that pinned consumers (extends github>smkwlab/.github:latex#v1) resolve the entire preset chain — including the auto-merge policy in default.json — at a controlled version instead of the default branch. Addresses Copilot review feedback about unpinned preset references. Follow-up to #28.
There was a problem hiding this comment.
Pull request overview
Pins the internal Renovate preset inheritance in this repo so that latex.json and elixir.json extend the default.json preset at the moving major tag v1, ensuring consumers who use :latex#v1 / :elixir#v1 don’t accidentally resolve nested presets from the default branch.
Changes:
- Update
latex.jsonto extendgithub>smkwlab/.github#v1instead of the default-branch reference. - Update
elixir.jsonto extendgithub>smkwlab/.github#v1instead of the default-branch reference.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| latex.json | Pins the nested base preset reference to #v1 while keeping workarounds:all. |
| elixir.json | Pins the nested base preset reference to #v1 for consistent chain resolution. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
toshi0806
added a commit
to smkwlab/latex-environment
that referenced
this pull request
Jun 3, 2026
Reference the shared preset at the v1 tag (github>smkwlab/.github:latex#v1) so dependency-update behavior is resolved at a controlled version instead of the default branch. Follow-up to smkwlab/.github#29.
toshi0806
added a commit
to smkwlab/thesis-management-tools
that referenced
this pull request
Jun 3, 2026
Reference the shared preset at the v1 tag (github>smkwlab/.github:latex#v1) so dependency-update behavior is resolved at a controlled version instead of the default branch. Follow-up to smkwlab/.github#29.
toshi0806
added a commit
to smkwlab/latex-release-action
that referenced
this pull request
Jun 3, 2026
Reference the shared preset at the v1 tag (github>smkwlab/.github:latex#v1) so dependency-update behavior is resolved at a controlled version instead of the default branch. Follow-up to smkwlab/.github#29.
toshi0806
added a commit
to smkwlab/thesis-management-tools
that referenced
this pull request
Jun 3, 2026
* Use shared Renovate preset from smkwlab/.github Replace the duplicated Renovate configuration with a one-line extends of the org-wide shared preset (github>smkwlab/.github:latex). Behavior is preserved; auto-merge for patch/digest updates is now applied per the shared policy. Depends on smkwlab/.github#28. * Pin shared Renovate preset reference to v1 Reference the shared preset at the v1 tag (github>smkwlab/.github:latex#v1) so dependency-update behavior is resolved at a controlled version instead of the default branch. Follow-up to smkwlab/.github#29.
toshi0806
added a commit
to smkwlab/latex-release-action
that referenced
this pull request
Jun 3, 2026
* Use shared Renovate preset from smkwlab/.github Replace the duplicated Renovate configuration with a one-line extends of the org-wide shared preset (github>smkwlab/.github:latex). Behavior is preserved; auto-merge for patch/digest updates is now applied per the shared policy. Depends on smkwlab/.github#28. * Pin shared Renovate preset reference to v1 Reference the shared preset at the v1 tag (github>smkwlab/.github:latex#v1) so dependency-update behavior is resolved at a controlled version instead of the default branch. Follow-up to smkwlab/.github#29.
toshi0806
added a commit
to smkwlab/latex-environment
that referenced
this pull request
Jun 3, 2026
* Use shared Renovate preset from smkwlab/.github Replace the duplicated Renovate configuration with a one-line extends of the org-wide shared preset (github>smkwlab/.github:latex). Behavior is preserved; auto-merge for patch/digest updates is now applied per the shared policy. Depends on smkwlab/.github#28. * Pin shared Renovate preset reference to v1 Reference the shared preset at the v1 tag (github>smkwlab/.github:latex#v1) so dependency-update behavior is resolved at a controlled version instead of the default branch. Follow-up to smkwlab/.github#29.
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.
Summary
Follow-up to #28. Pin the nested
github>smkwlab/.github(→default.json) references insidelatex.jsonandelixir.jsonto the moving major tag#v1.Why
Consumer repos will pin to
github>smkwlab/.github:latex#v1. However, Renovate does not propagate a parent preset's ref to nested presets —github>smkwlab/.githubwithout a ref resolves at the default branch. Without this change, a "pinned" consumer would still pick updefault.json(which holds the auto-merge policy) frommaininstantly, defeating the purpose of pinning.Pinning the internal references makes the entire preset chain resolve at the controlled
v1tag.Addresses the Copilot review feedback on smkwlab/.github (unpinned preset reference) at the preset-internal layer.
Rollout note
After this merges, the
v1tag will be moved forward to this commit (and av1.6.0release cut), so that:latex#v1resolves to the preset-containing, internally-pinned version. Consumer PRs (latex-environment#141, thesis-management-tools#437, latex-release-action#61) will then be updated to reference:latex#v1.