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: 3 additions & 2 deletions .github/workflows/quality-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ jobs:
MISSING=0
for file in LICENSE README.md .gitignore CODEOWNERS CONTRIBUTING.md \
SECURITY.md CLAUDE.md .pre-commit-config.yaml \
.github/dependabot.yml config/baseline.json \
config/overrides.json; do
.coderabbit.yaml .github/copilot-instructions.md \
.github/dependabot.yml .github/PULL_REQUEST_TEMPLATE.md \
config/baseline.json config/overrides.json; do
Comment on lines 63 to +67
if [ ! -f "$file" ]; then
echo "MISSING: $file"
MISSING=$((MISSING + 1))
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,12 @@ report (not auto-created, since content is repo-specific).
| `CODEOWNERS` | Assign default reviewers |
| `CONTRIBUTING.md` | Contribution guidelines |
| `SECURITY.md` | Vulnerability disclosure policy |
| `CLAUDE.md` | Claude Code project instructions |
| `.pre-commit-config.yaml` | Local linting and validation |
| `.coderabbit.yaml` | CodeRabbit auto-review configuration |
| `.github/copilot-instructions.md` | Copilot code review instructions |
| `.github/dependabot.yml` | Automated dependency updates |
| `.github/PULL_REQUEST_TEMPLATE.md` | PR checklist template |

### Metadata Checks (Advisory)

Expand Down
6 changes: 5 additions & 1 deletion config/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,11 @@
"CODEOWNERS",
"CONTRIBUTING.md",
"SECURITY.md",
"CLAUDE.md",
".pre-commit-config.yaml",
".github/dependabot.yml"
".coderabbit.yaml",
".github/copilot-instructions.md",
".github/dependabot.yml",
".github/PULL_REQUEST_TEMPLATE.md"
]
}
12 changes: 12 additions & 0 deletions config/overrides.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@
}
}
},
"cloud-architecture-course": {
"branch_protection": {
"required_status_checks": {
"contexts": [
"Markdown Linting",
"YAML Validation",
"Validate Repository Structure",
"Security Scan"
]
}
}
},
"aws-organization-governance": {
"branch_protection": {
"required_status_checks": {
Expand Down
Loading