clud-bug 0.6.11 → 0.6.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "clud-bug",
3
- "version": "0.6.11",
3
+ "version": "0.6.12",
4
4
  "description": "Skill-driven Claude PR review. Ship a brand-voice skill, get brand reviews. Each finding cites the skill that motivated it. CLI installs the workflow + a baseline kit; add more from skills.sh.",
5
5
  "homepage": "https://cludbug.dev",
6
6
  "bugs": "https://github.com/thrillmade/clud-bug/issues",
@@ -83,8 +83,13 @@ jobs:
83
83
  git add -A
84
84
  git commit -m "🐛 Clud Bug self-update: ${INSTALLED} → ${LATEST}"
85
85
  git push -u origin "$BRANCH"
86
+ # Build the PR body via printf so the embedded newlines don't break
87
+ # the YAML `run: |` literal-block parser. v0.6.11 and earlier put a
88
+ # blank line directly inside the --body string; some YAML parsers
89
+ # (GitHub Actions among them) ended the block scalar at that blank
90
+ # line and rejected the next line as an unexpected top-level value,
91
+ # which broke `workflow_dispatch` on every consuming repo.
92
+ BODY=$(printf 'Automated update from clud-bug %s → %s. Custom and skills.sh-installed specimens were left alone; only baseline specimens and the workflow templates were refreshed.\n\nReview the diff. To stay on this version permanently, add `"pinVersion": "%s"` to `.claude/skills/.clud-bug.json` before merging.' "${INSTALLED}" "${LATEST}" "${INSTALLED}")
86
93
  gh pr create \
87
94
  --title "🐛 Clud Bug self-update: ${INSTALLED} → ${LATEST}" \
88
- --body "Automated update from clud-bug ${INSTALLED} → ${LATEST}. Custom and skills.sh-installed specimens were left alone; only baseline specimens and the workflow templates were refreshed.
89
-
90
- Review the diff. To stay on this version permanently, add \`\"pinVersion\": \"${INSTALLED}\"\` to \`.claude/skills/.clud-bug.json\` before merging."
95
+ --body "$BODY"
@@ -85,6 +85,6 @@ jobs:
85
85
  # Strict-mode gate — composite action; see workflow.yml.tmpl for design notes.
86
86
  - name: Strict mode — fail check on critical findings
87
87
  if: success()
88
- uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.11
88
+ uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.12
89
89
  with:
90
90
  github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -85,6 +85,6 @@ jobs:
85
85
  # Strict-mode gate — composite action; see workflow.yml.tmpl for design notes.
86
86
  - name: Strict mode — fail check on critical findings
87
87
  if: success()
88
- uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.11
88
+ uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.12
89
89
  with:
90
90
  github-token: ${{ secrets.GITHUB_TOKEN }}
@@ -145,6 +145,6 @@ jobs:
145
145
  # Letting the action's own failure fail the check is louder and right.
146
146
  - name: Strict mode — fail check on critical findings
147
147
  if: success()
148
- uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.11
148
+ uses: thrillmade/clud-bug/.github/actions/strict-mode-gate@v0.6.12
149
149
  with:
150
150
  github-token: ${{ secrets.GITHUB_TOKEN }}