CI: Automate release creation on tag push#180
Conversation
SloMR
commented
Apr 10, 2026
- Implements a GitHub Action that triggers on tag creation.
- Creates categorized GitHub releases based on component tags.
- Enhances release management workflow by automating release notes.
- Implements a GitHub Action that triggers on tag creation. - Creates categorized GitHub releases based on component tags. - Enhances release management workflow by automating release notes.
There was a problem hiding this comment.
Pull request overview
Adds automated GitHub Release creation when component/version tags are pushed, generating categorized release notes from commit history via a repo script.
Changes:
- Introduces
scripts/create-releases.shto build release notes (scoped by component) and create releases viagh. - Adds
.github/workflows/release.ymlto trigger the script on tag pushes matching*/*.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 5 comments.
| File | Description |
|---|---|
| scripts/create-releases.sh | Implements tag processing, commit filtering/categorization, and GitHub Release creation. |
| .github/workflows/release.yml | Runs the release creation script automatically on component/version tag pushes. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
- Limits CI/CD triggers to relevant directories, enhancing efficiency. - Ensures that only changes affecting Server or Web components trigger corresponding workflows.
There was a problem hiding this comment.
Pull request overview
Adds automated GitHub Release creation on component/version tag pushes, generating categorized release notes from commit history to streamline multi-component release management.
Changes:
- Introduces
scripts/create-releases.shto build categorized changelogs per component tag and create GitHub Releases viagh. - Adds a new tag-triggered workflow (
.github/workflows/release.yml) to run the release creation script on*/*tags. - Restricts existing
webandserverworkflows to only run when relevant paths change.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 8 comments.
| File | Description |
|---|---|
scripts/create-releases.sh |
New Bash script that generates per-component release notes and creates GitHub Releases via GitHub CLI. |
.github/workflows/release.yml |
New workflow to run release creation automatically on tag pushes. |
.github/workflows/web.yml |
Adds paths filters to scope Web CI runs to web-related changes. |
.github/workflows/server.yml |
Adds paths filters to scope Server CI runs to server-related changes. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.