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
5 changes: 4 additions & 1 deletion .github/workflows/boxel-cli-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,10 @@ jobs:
set -euo pipefail
git add packages/boxel-cli/package.json \
packages/boxel-cli/plugin/.claude-plugin/plugin.json \
packages/boxel-cli/plugin/skills
packages/boxel-cli/plugin/skills \
packages/boxel-cli/plugin/commands \
packages/boxel-cli/plugin/README.md \
packages/boxel-cli/scripts/.boxel-skills-manifest.json
if git diff --cached --quiet; then
echo "No changes to commit (regen produced no diff, bumps both none)."
echo "pushed=false" >> "$GITHUB_OUTPUT"
Expand Down
9 changes: 9 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,12 @@ pnpm-lock.yaml
# make every subsequent pull a formatting fight. The package's own lint
# excludes them from prettier for the same reason.
packages/observability/grafanactl/resources/

# Plugin content copied verbatim from the pinned boxel-skills tag by
# `pnpm build:skills` (packages/boxel-cli/scripts/build-skills.ts).
# Reformatting drifts the copies from the upstream bytes — prettier's
# markdown parser even mangles underscore emphasis in some upstream files.
# The CLI-authored skills under plugin/skills/ ride along; they're markdown
# maintained by hand + build-plugin.ts, not prettier.
packages/boxel-cli/plugin/skills/
packages/boxel-cli/plugin/commands/
Loading
Loading