Skip to content
Open
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
15 changes: 9 additions & 6 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ Follow template (what/why/references).
**Blog Posts (CI Enforced):**
- PRs labeled `minor`/`major` MUST include blog post: `website/blog/YYYY-MM-DD-feature-name.mdx`
- Use `.mdx` with YAML front matter, `<!--truncate-->` after intro
- Tags: User-facing (`feature`/`enhancement`/`bugfix`) or Contributors (`contributors`)
- **ONLY use existing tags** - check `website/blog/*.mdx` for valid tags before writing
- Author: committer's GitHub username, add to `website/blog/authors.yml`

**Blog Template:**
Expand All @@ -433,11 +433,14 @@ Brief intro.
## What Changed / Why This Matters / How to Use It / Get Involved
```

**Tag Reference:**
- Primary: `feature`, `enhancement`, `bugfix`, `contributors`
- Technical (contributor): `atmos-core`, `refactoring`, `testing`, `ci-cd`, `developer-experience`
- Technical (user): `terraform`, `helmfile`, `workflows`, `validation`, `performance`, `cloud-architecture`
- General: `announcements`, `breaking-changes`
**Existing Tags (use only these):**
- Primary: `feature`, `enhancement`, `bugfix`
- Secondary: `dx`, `security`, `documentation`, `core`, `breaking-change`

**Finding valid tags:**
```bash
grep -h "^ - " website/blog/*.mdx | sort | uniq -c | sort -rn
```

Use `no-release` label for docs-only changes.

Expand Down
Loading