From c10e819c0567cc5817758e7808c49f93b0358e9a Mon Sep 17 00:00:00 2001 From: Aaron Powell Date: Thu, 26 Feb 2026 16:59:06 +1100 Subject: [PATCH] fix: remove [skip ci] from publish workflow The [skip ci] tag in the publish commit message was preventing downstream workflows (e.g. deploy-website.yml) from triggering on the push to main. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7b2ae118..a33c8f1a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -50,5 +50,5 @@ jobs: git config user.email "41898282+github-actions[bot]@users.noreply.github.com" git add -A git add -f plugins/*/agents/ plugins/*/skills/ - git commit -m "chore: publish from staged [skip ci]" --allow-empty + git commit -m "chore: publish from staged" --allow-empty git push origin HEAD:main --force