From c290c34d7812889ac209bcc4c3087dd8cce379c5 Mon Sep 17 00:00:00 2001 From: Nathan Heaps <1282393+nsheaps@users.noreply.github.com> Date: Tue, 11 Aug 2026 22:00:42 -0400 Subject: [PATCH] Fix sync-plugin-specs workflow failing on self-trigger This repo has no plugins/ directory (it hosts reusable actions, not plugins), but the workflow carried push/schedule/workflow_dispatch triggers in addition to workflow_call, causing it to fire directly against this repo and fail at `cd plugins` in sync.sh. Remove the direct triggers so this file is purely a reusable workflow, invoked only via workflow_call by consumer repos (ai-mktpl, agents) that actually have a plugins/ directory. --- .github/workflows/sync-plugin-specs.yaml | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/.github/workflows/sync-plugin-specs.yaml b/.github/workflows/sync-plugin-specs.yaml index 539b892..4553029 100644 --- a/.github/workflows/sync-plugin-specs.yaml +++ b/.github/workflows/sync-plugin-specs.yaml @@ -13,18 +13,6 @@ on: type: string required: false default: 'chore(specs): auto-sync plugin SPEC.md files' - push: - branches: [main] - paths: - - 'plugins/**/SKILL.md' - - 'plugins/**/hooks.json' - - 'plugins/**/rules/*.md' - - 'plugins/**/commands/*.md' - - 'plugins/**/agents/*.md' - - 'plugins/**/SPEC.md' - schedule: - - cron: '0 6 * * 1' - workflow_dispatch: permissions: {}