Compare commits

..

2 Commits

Author SHA1 Message Date
Chris Farhood 4dfc5f9ed9 fix: correct markdownlint errors in existing skill files
CI / lint (pull_request) Successful in 8s
CI / lint CI passed (push event context)
- sdlc-diagram.md: remove extra trailing blank line (MD012)
- sdlc/SKILL.md lines 76,91: add language to fenced code blocks (MD040)
- uat/SKILL.md: verify trailing newline (MD047)

These pre-existing issues were surfaced by the expanded CI introduced
in the 'ci: move to .gitea/workflows and expand lint coverage' commit.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-05-21 11:27:11 +00:00
Countess von Containerheim 37fa23df15 feat: restore GitHub release creation in plugin-release workflow
Merging the content from PR #67 (gandalf/restore-github-release-workflow).
The PR branch had unrelated history with main, so applying the file change directly.
All reviews complete: QA (Regina #3399), UAT (Patty), CTO (Nancy #3421).
Ref: PRI-1703, PRI-1698, PRI-1688
2026-05-21 11:25:32 +00:00
2 changed files with 0 additions and 36 deletions
-12
View File
@@ -42,15 +42,3 @@ jobs:
done
done
exit $fail
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate JSON files
run: |
find . -name "*.json" -not -path "./.git/*" | while read -r f; do
python3 -m json.tool "$f" > /dev/null || { echo "::error file=$f::Invalid JSON"; exit 1; }
done
echo "All JSON files valid"
-24
View File
@@ -1,24 +0,0 @@
name: Promotion Gate
on:
pull_request:
branches: [main]
jobs:
promotion_gate:
name: Promotion Gate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate skills directory structure
run: |
set -e
fail=0
for dir in skills/*/; do
if [ ! -f "${dir}SKILL.md" ]; then
echo "::error::Missing SKILL.md in ${dir}"
fail=1
fi
done
exit $fail