Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Claude Plugin Validate (reusable)
name: Claude Plugins CI (reusable)

# ---------------------------------------------------------------------------
# Reusable workflow: validate a Claude Code plugin or marketplace manifest
Expand All @@ -7,7 +7,7 @@ name: Claude Plugin Validate (reusable)
# Usage:
# jobs:
# validate:
# uses: ITlusions/ITL.Github/.github/workflows/_reusable-claude-plugin-validate.yml@main
# uses: ITlusions/ITL.Github/.github/workflows/_reusable-claude-plugins-ci.yml@main
# with:
# path: "plugins/my-plugin" # or "." for a marketplace root
# ---------------------------------------------------------------------------
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Claude Plugin Publish (reusable)
name: Claude Plugins Publish (reusable)

# ---------------------------------------------------------------------------
# Reusable workflow: version, tag, and release one Claude Code plugin as a
Expand All @@ -15,7 +15,7 @@ name: Claude Plugin Publish (reusable)
# publish:
# needs: [ ci ]
# if: github.ref == 'refs/heads/main'
# uses: ITlusions/ITL.Github/.github/workflows/_reusable-claude-plugin-publish.yml@main
# uses: ITlusions/ITL.Github/.github/workflows/_reusable-claude-plugins-publish.yml@main
# with:
# component-path: "plugins/my-plugin"
# component-name: "my-plugin"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ Reference via `uses: ITlusions/ITL.Github/.github/workflows/<name>.yml@main`
| `_reusable-docker-retag.yml` | Promote image by retagging (no rebuild) | [docs](docs/workflows/docker-retag.md) |
| `_reusable-publish-pypi.yml` | Publish wheel to PyPI via OIDC | [docs](docs/workflows/publish-pypi.md) |
| `_reusable-release-gh.yml` | Create GitHub Release with assets | [docs](docs/workflows/release-gh.md) |
| `_reusable-claude-plugin-validate.yml` | Validate a Claude Code plugin/marketplace manifest | [docs](docs/workflows/claude-plugin-validate.md) |
| `_reusable-claude-plugins-ci.yml` | Validate a Claude Code plugin/marketplace manifest | [docs](docs/workflows/claude-plugins-ci.md) |
| `_reusable-claude-plugin-version-tag.yml` | Subdirectory-scoped semver + tag for one plugin in a multi-plugin repo | [docs](docs/workflows/claude-plugin-version-tag.md) |
| `_reusable-claude-plugin-release.yml` | Publish a GitHub Release for one Claude Code plugin | [docs](docs/workflows/claude-plugin-release.md) |
| `_reusable-claude-plugin-publish.yml` | Version + tag + release one plugin as a single `publish` job | [docs](docs/workflows/claude-plugin-publish.md) |
| `_reusable-claude-plugins-publish.yml` | Version + tag + release one plugin as a single `publish` job | [docs](docs/workflows/claude-plugins-publish.md) |

## Composite Actions

Expand Down
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ uses: ITlusions/ITL.Github/.github/workflows/<name>.yml@main
| [`_reusable-docker-retag.yml`](workflows/docker-retag.md) | Promote image by retagging (no rebuild) |
| [`_reusable-publish-pypi.yml`](workflows/publish-pypi.md) | Publish wheel to PyPI via OIDC |
| [`_reusable-release-gh.yml`](workflows/release-gh.md) | Create GitHub Release with assets |
| [`_reusable-claude-plugin-validate.yml`](workflows/claude-plugin-validate.md) | Validate a Claude Code plugin/marketplace manifest |
| [`_reusable-claude-plugins-ci.yml`](workflows/claude-plugins-ci.md) | Validate a Claude Code plugin/marketplace manifest |
| [`_reusable-claude-plugin-version-tag.yml`](workflows/claude-plugin-version-tag.md) | Subdirectory-scoped semver + tag for one plugin in a multi-plugin repo |
| [`_reusable-claude-plugin-release.yml`](workflows/claude-plugin-release.md) | Publish a GitHub Release for one Claude Code plugin |
| [`_reusable-claude-plugin-publish.yml`](workflows/claude-plugin-publish.md) | Version + tag + release one plugin as a single `publish` job |
| [`_reusable-claude-plugins-publish.yml`](workflows/claude-plugins-publish.md) | Version + tag + release one plugin as a single `publish` job |

### Composite Actions

Expand Down
2 changes: 1 addition & 1 deletion docs/workflows/claude-plugin-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
```

Pair with [claude-plugin-version-tag.md](claude-plugin-version-tag.md), which produces the tag
this workflow releases, and [claude-plugin-validate.md](claude-plugin-validate.md) for the
this workflow releases, and [claude-plugins-ci.md](claude-plugins-ci.md) for the
validation step run before either.

Release zip URLs (`.../releases/download/{tag}/{name}-{version}.zip`) are usable directly with
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Claude Plugin Validate
# Claude Plugins CI

**File:** `_reusable-claude-plugin-validate.yml`
**File:** `_reusable-claude-plugins-ci.yml`

Validates a Claude Code plugin or marketplace manifest via `claude plugin validate --strict`.
Installs `@anthropic-ai/claude-code` and runs the validator against a given path — either a
Expand All @@ -19,12 +19,12 @@ single plugin directory (checks its `.claude-plugin/plugin.json`) or a marketpla
```yaml
jobs:
validate-marketplace:
uses: ITlusions/ITL.Github/.github/workflows/_reusable-claude-plugin-validate.yml@main
uses: ITlusions/ITL.Github/.github/workflows/_reusable-claude-plugins-ci.yml@main
with:
path: "."

validate-plugin:
uses: ITlusions/ITL.Github/.github/workflows/_reusable-claude-plugin-validate.yml@main
uses: ITlusions/ITL.Github/.github/workflows/_reusable-claude-plugins-ci.yml@main
with:
path: "plugins/my-plugin"
```
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Claude Plugin Publish
# Claude Plugins Publish

**File:** `_reusable-claude-plugin-publish.yml`
**File:** `_reusable-claude-plugins-publish.yml`

Version, tag, and release one Claude Code plugin as a single callable unit — chains
[`_reusable-claude-plugin-version-tag.yml`](claude-plugin-version-tag.md) and
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
strategy:
matrix:
plugin: [ my-plugin ] # add another entry per additional plugin
uses: ITlusions/ITL.Github/.github/workflows/_reusable-claude-plugin-validate.yml@main
uses: ITlusions/ITL.Github/.github/workflows/_reusable-claude-plugins-ci.yml@main
with:
path: plugins/${{ matrix.plugin }}

Expand All @@ -70,7 +70,7 @@ jobs:
max-parallel: 1
matrix:
plugin: [ my-plugin ]
uses: ITlusions/ITL.Github/.github/workflows/_reusable-claude-plugin-publish.yml@main
uses: ITlusions/ITL.Github/.github/workflows/_reusable-claude-plugins-publish.yml@main
with:
component-path: plugins/${{ matrix.plugin }}
component-name: ${{ matrix.plugin }}
Expand Down
Loading