Files
Ghost/.gitattributes
Kevin Ansfield 6cece8e7c4 Added automated Linear issue triage workflow (#26534)
## Summary

- Adds a GitHub Agentic Workflow that automatically triages new Linear issues for the Berlin Bureau (BER) team
- Classifies issue type (bug, security, feature, improvement, performance, maintenance, documentation), assigns priority (P1–P4 with bump modifiers), tags product area, and posts a reasoning comment on each issue
- Runs daily on weekdays via fuzzy schedule and can be triggered manually via `workflow_dispatch`
- Uses `cache-memory` to track previously triaged issues across runs, avoiding duplicates
- Requires a `LINEAR_API_KEY` repository secret with read/write access to the BER team

### Files

- `.github/workflows/linear-triage.md` — workflow definition (edit the markdown body to adjust agent behavior without recompilation)
- `.github/workflows/linear-triage.lock.yml` — compiled GitHub Actions workflow
- `.gitattributes` — added `linguist-generated` rule for `.lock.yml` files
2026-02-23 10:21:46 +00:00

8 lines
187 B
Plaintext

# enforce unix style line endings
*.js text eol=lf
*.md text eol=lf
*.json text eol=lf
*.yml text eol=lf
*.hbs text eol=lf
.github/workflows/*.lock.yml linguist-generated=true merge=ours