From d62b91f2f57d77062a6606919add0b363d4a5f61 Mon Sep 17 00:00:00 2001 From: DevCats Date: Tue, 19 May 2026 21:52:04 +0000 Subject: [PATCH] fix: remove skills handling from version-bump and release workflows Skills are not versioned in the registry. Their versioning happens in the source repos. The version-bump workflow only handles modules, and the release.yml skill-path detection was based on the old per-skill directory format that no longer exists. --- .github/workflows/release.yml | 7 +------ .github/workflows/version-bump.yaml | 1 - 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9a76842c..f28557bc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,12 +34,7 @@ jobs: echo "module=$MODULE" >> $GITHUB_OUTPUT echo "version=$VERSION" >> $GITHUB_OUTPUT - # Determine whether this tag is for a module or a skill. - if [ -d "registry/$NAMESPACE/skills/$MODULE" ]; then - echo "module_path=registry/$NAMESPACE/skills/$MODULE" >> $GITHUB_OUTPUT - else - echo "module_path=registry/$NAMESPACE/modules/$MODULE" >> $GITHUB_OUTPUT - fi + echo "module_path=registry/$NAMESPACE/modules/$MODULE" >> $GITHUB_OUTPUT RELEASE_TITLE="$NAMESPACE/$MODULE $VERSION" echo "release_title=$RELEASE_TITLE" >> $GITHUB_OUTPUT diff --git a/.github/workflows/version-bump.yaml b/.github/workflows/version-bump.yaml index b51565b4..477a65d3 100644 --- a/.github/workflows/version-bump.yaml +++ b/.github/workflows/version-bump.yaml @@ -5,7 +5,6 @@ on: types: [labeled] paths: - "registry/**/modules/**" - - "registry/**/skills/**" concurrency: group: ${{ github.workflow }}-${{ github.ref }}