Commit 33acf81
feat: add release highlights generator agentic workflow (#197)
* Initial plan
* feat: add release highlights generator agentic workflow
Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
* refactor: combine release highlights generator with release pipeline
Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
* feat: add dry run option to release workflow
Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
* fix: add version validation to prevent package.json/tag mismatches
Adds a validation step that checks package.json version matches the git tag
version before building. This prevents the issue where a tag is created on
a commit with the wrong version number, which caused the v0.9.0 release to
initially fail smoke tests.
The validation step provides clear error messages and remediation steps when
a mismatch is detected.
Resolves the root cause of workflow run 21004691307 failure.
* ci: add explicit CodeQL workflow to fix Python analysis error
GitHub's default CodeQL setup was attempting to analyze Python code,
but this repository only contains JavaScript/TypeScript and GitHub
Actions. The false detection was caused by a Python file in
node_modules (flatted/python/flatted.py).
This explicit workflow:
- Only analyzes javascript-typescript and actions languages
- Replaces the default setup with controlled configuration
- Prevents "no source code found" errors for Python
- Runs on PR, push to main, weekly schedule, and manual dispatch
Fixes the CodeQL failure in PR #197.
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
---------
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Mossaka <5447827+Mossaka@users.noreply.github.com>
Co-authored-by: Jiaxiao (mossaka) Zhou <duibao55328@gmail.com>
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>1 parent 0e2fe3c commit 33acf81
4 files changed
Lines changed: 2056 additions & 285 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
| 21 | + | |
| 22 | + | |
| 23 | + | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
0 commit comments