Skip to content

update PR-LOG: 39 PRs, 9 merged (23.1%), 24 open, 6 closed #58

update PR-LOG: 39 PRs, 9 merged (23.1%), 24 open, 6 closed

update PR-LOG: 39 PRs, 9 merged (23.1%), 24 open, 6 closed #58

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Validate SKILL.md
run: |
# Ensure SKILL.md exists and has frontmatter
test -f skills/auto-pr-workflow/SKILL.md
head -1 skills/auto-pr-workflow/SKILL.md | grep -q "^---"
echo "SKILL.md OK"
- name: Validate test records
run: |
# Ensure test records directory has content
ls test-records/*.md | grep -v README.md | grep -v template.md
echo "Test records OK"