Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -80547,7 +80547,9 @@ var STABLE_TAG_NAME_REFS = {
// `branch-off-yy.mm` is a surprising name, but is the pattern identified in the documentation.
//
// See: https://github.com/NixOS/release-wiki/pull/90
"24.11": "tags/branch-off-24.11"
"24.11": "tags/branch-off-24.11",
// It appears that https://github.com/NixOS/release-wiki/pull/90 was not followed for 25.05
"25.05": "tags/25.05"
};
var FlakeHubMirrorAction = class {
constructor() {
Expand Down
4 changes: 3 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ const STABLE_TAG_NAME_REFS: { [key: string]: string } = {
//
// See: https://github.com/NixOS/release-wiki/pull/90
"24.11": "tags/branch-off-24.11",
// It appears that https://github.com/NixOS/release-wiki/pull/90 was not followed for 25.05
"25.05": "tags/25.05",
};

class FlakeHubMirrorAction {
Expand Down Expand Up @@ -88,7 +90,7 @@ export async function getRollingMinor(
if (STABLE_TAG_NAME_REFS[versionPart]) {
expectedRef = STABLE_TAG_NAME_REFS[versionPart];
} else {
// See: https://github.com/NixOS/release-wiki/pull/90
// See: https://github.com/NixOS/release-wiki/pull/90 which is still current policy
expectedRef = `tags/branch-off-${versionPart}`;
}

Expand Down
Loading