Skip to content

Commit d1d7942

Browse files
committed
chore(sdlc): harden ci/cd safety nets
1 parent 997f1c9 commit d1d7942

3 files changed

Lines changed: 24 additions & 33 deletions

File tree

.github/dependabot.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@ updates:
44
directory: "/."
55
schedule:
66
interval: "weekly"
7+
groups:
8+
all:
9+
patterns:
10+
- "*"

.github/pull_request_template.md

Lines changed: 8 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,8 @@
1-
## Intent
2-
3-
<!-- Explain the problem and the smallest coherent solution. -->
4-
5-
## Changes
6-
7-
<!-- List the behavior changed. Avoid a file inventory. -->
8-
9-
## Risk And Safety
10-
11-
- [ ] Permissions, identities, secrets, and data boundaries were reviewed.
12-
- [ ] AI-generated output and autonomous behavior were reviewed by a human.
13-
- [ ] No credentials, personal data, proprietary code, or sensitive prompts were added.
14-
- [ ] Breaking changes and migration requirements are documented.
15-
16-
## Verification
17-
18-
<!-- Include exact commands and meaningful results. -->
19-
20-
- [ ] Tests, linting, and repository validation pass.
21-
- [ ] Documentation and examples match actual behavior.
22-
23-
## Rollback
24-
25-
<!-- Explain how to safely revert or disable this change. -->
26-
27-
## Reviewer Focus
28-
29-
<!-- Identify the highest-risk decisions and files. -->
1+
## Description
2+
<!-- Describe your changes -->
3+
4+
## SDLC Verification
5+
- [ ] Code follows CAS architecture (`AGENTS.md`)
6+
- [ ] Tested via `gsd-verify-work`
7+
- [ ] No embedded secrets or credentials
8+
- [ ] Passed `gsd-code-review`

.pre-commit-config.yaml

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
repos:
2-
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v4.4.0
2+
- repo: https://github.com/pre-commit/pre-commit-hooks
3+
rev: v4.5.0
44
hooks:
5-
- id: trailing-whitespace
6-
- id: end-of-file-fixer
5+
- id: trailing-whitespace
6+
- id: end-of-file-fixer
7+
- id: check-merge-conflict
8+
- id: check-yaml
9+
- id: check-json
10+
- id: check-added-large-files
11+
- repo: https://github.com/gitleaks/gitleaks
12+
rev: v8.18.2
13+
hooks:
14+
- id: gitleaks

0 commit comments

Comments
 (0)