From 8fd7efd8b59f59a45883913cd4acd0c83d7572d6 Mon Sep 17 00:00:00 2001 From: fOuttaMyPaint <154358121+TMHSDigital@users.noreply.github.com> Date: Sun, 26 Apr 2026 12:00:34 -0400 Subject: [PATCH] fix: change release-doc-sync default meta-repo-ref to v1 The previous default of v1.0 referenced a tag that was never created. release.yml auto-maintains v1 (floating major) and v1.MINOR tags but never created a v1.0 lightweight tag. First-time consumers of release-doc-sync@v1 calling the action without an explicit override hit a tag resolution failure at checkout. Surfaced during Blender-Developer-Tools v0.1.0 release pipeline. The workaround in that repo (commit 98e9a57) sets meta-repo-ref: v1.9.1 explicitly. With this default change, future first-time consumers will work without that workaround. The input description string is updated in the same change to match the new default. Tracks DTD#42. Closes #42 Made-with: Cursor --- .github/actions/release-doc-sync/action.yml | 4 ++-- VERSION | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/release-doc-sync/action.yml b/.github/actions/release-doc-sync/action.yml index 6f8c7b0..a13e53a 100644 --- a/.github/actions/release-doc-sync/action.yml +++ b/.github/actions/release-doc-sync/action.yml @@ -58,9 +58,9 @@ inputs: required: false default: '3.11' meta-repo-ref: - description: 'git ref of TMHSDigital/Developer-Tools-Directory to use for the sync script. Defaults to v1.0 (latest 1.x.y).' + description: 'git ref of TMHSDigital/Developer-Tools-Directory to use for the sync script. Defaults to v1 (floating major, auto-maintained by release.yml on every release).' required: false - default: 'v1.0' + default: 'v1' caller-path: description: 'Path inside GITHUB_WORKSPACE that points at the caller checkout. Defaults to "." (root).' required: false diff --git a/VERSION b/VERSION index 9ab8337..8fdcf38 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.9.1 +1.9.2