From 88055e807a1733f7b7c0b18c1ed247263b2b504a Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 14 Aug 2025 23:23:19 +0000 Subject: [PATCH 1/2] fix: change trigger from release events to tag push events - Change trigger from 'on.release.types: [published]' to 'on.push.tags: [v*.*.*]' - Revert back to using nowactions/update-majorver@v1 action instead of custom solution - This fixes the workflow failure: 'Cannot read properties of undefined (reading 'id')' - Root cause: nowactions/update-majorver@v1 expects tag push context, not release context - Simpler approach suggested by @aaronsteers - use tag pushes instead of release events Requested by @aaronsteers Co-Authored-By: AJ Steers --- .github/workflows/update-major-tags.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/update-major-tags.yml b/.github/workflows/update-major-tags.yml index 1253c3a..0d12467 100644 --- a/.github/workflows/update-major-tags.yml +++ b/.github/workflows/update-major-tags.yml @@ -1,8 +1,9 @@ name: Update Major Version Tags on: - release: - types: [published] + push: + tags: + - 'v*.*.*' permissions: contents: write From 9fc8f51594b631b321000ff32ed930c7dc5a5858 Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Thu, 14 Aug 2025 16:30:56 -0700 Subject: [PATCH 2/2] Update .github/workflows/update-major-tags.yml Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- .github/workflows/update-major-tags.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-major-tags.yml b/.github/workflows/update-major-tags.yml index 0d12467..cfc902f 100644 --- a/.github/workflows/update-major-tags.yml +++ b/.github/workflows/update-major-tags.yml @@ -3,7 +3,7 @@ name: Update Major Version Tags on: push: tags: - - 'v*.*.*' + - 'v[0-9]+.[0-9]+.[0-9]+' permissions: contents: write