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
5 changes: 5 additions & 0 deletions hack/apply-blog-tags.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const CONTENT_TYPE_TAGS = [
'technical-deep-dive',
'case-study',
'community-event',
'hackathon',
'tutorial',
'milestone'
]
Expand Down Expand Up @@ -167,6 +168,10 @@ function inferTags(frontmatter, body, filePath) {
tags.push('community-event')
}

if (includesAny(title, ['hackathon']) || includesAny(slug, ['hackathon'])) {
tags.push('hackathon')
}

if (/\bv\d+\.\d+(\.\d+)?\b/.test(title) || includesAny(title, [' release ', 'released'])) {
tags.push('release-notes')
tags.push('feature-announcement')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ tags:
- community-event
- security
- helm
- hackathon
---
![Hackathon 2024/05 Team](images/hackathon202405-team.jpg "Hackathon 2024/05 Team")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ tags:
- feature-announcement
- community-event
- networking
- hackathon
---
![Hackathon 2024/12 Team](images/hackathon202412-team.jpg "Hackathon 2024/12 Team")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ aliases: ["/blog/2025/06/06-17-taking-gardener-to-the-next-level-highlights-from
tags:
- community-event
- apeiro
- hackathon
---
# Taking Gardener to the Next Level: Highlights from the 7th Gardener Community Hackathon in Schelklingen

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ Use lowercase kebab-case (`tag-name`) for all tags.
- `technical-deep-dive`: Detailed technical analysis and architecture content.
- `case-study`: Practical implementation reports and production stories.
- `community-event`: Community meeting, conference or Hackathon updates.
- `hackathon`: Hackathon updates.
- `tutorial`: Step-by-step usage guidance.
- `milestone`: Project anniversary or major achievement summaries.

Expand Down