feat(ci): add release-please and improve renovate auto-merge#53
feat(ci): add release-please and improve renovate auto-merge#53JacobPEvans merged 2 commits intomainfrom
Conversation
Add automated release management: - .github/workflows/release-please.yml: triggers on push to main, uses googleapis/release-please-action@v4 with explicit config files - release-please-config.json: simple release type, VERSION file, conventional changelog sections (feat/fix visible, others hidden) - .release-please-manifest.json: initial version 1.0.0 - VERSION: initial version file at 1.0.0 Update renovate.json to auto-merge official GitHub Actions (actions/* prefix) on major versions, matching ai-assistant-instructions pattern. This keeps actions/checkout, actions/setup-python, etc. current without manual PRs. (claude)
Summary of ChangesHello @JacobPEvans, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request introduces significant improvements to the repository's continuous integration and dependency management. It sets up automated release processes to streamline versioning and changelog generation, while also enhancing Renovate Bot's capabilities to automatically manage and merge updates for critical GitHub Actions dependencies, ensuring the project stays up-to-date with minimal manual intervention. Highlights
Changelog
Ignored Files
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Important
Looks good to me! 👍
Reviewed everything up to a0bcbee in 12 seconds. Click for details.
- Reviewed
61lines of code in4files - Skipped
1files when reviewing. - Skipped posting
0draft comments. View those below. - Modify your settings and rules to customize what types of comments Ellipsis leaves. And don't forget to react with 👍 or 👎 to teach Ellipsis.
Workflow ID: wflow_bykK6BnOjE9lhiXF
You can customize by changing your verbosity settings, reacting with 👍 or 👎, replying to comments, or adding code review rules.
There was a problem hiding this comment.
Code Review
This pull request introduces release-please for automated release management and configures Renovate to auto-merge updates for official GitHub Actions. The configuration for release-please is well-structured and follows best practices. For the Renovate configuration, I've suggested a small change to improve safety by adding a delay before auto-merging new releases. Overall, these are great improvements to the repository's CI/CD pipeline.
Provides a 1-day safety buffer before auto-merging GitHub Actions updates, allowing time for community discovery of supply-chain issues in new releases. Balances fast updates with stability over null (no delay). (claude)
There was a problem hiding this comment.
Pull request overview
This PR adds automated release management via release-please and enhances Renovate's auto-merge capabilities for official GitHub Actions. The implementation follows established patterns from related repositories (ai-assistant-instructions, ai-workflows) with minimal, security-focused configurations.
Changes:
- Added release-please workflow to automate changelog generation and GitHub releases on pushes to main
- Configured release-please to use semantic versioning starting at 1.0.0 with a VERSION file
- Extended renovate.json to auto-merge actions/* GitHub Actions updates (including major versions)
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
.github/workflows/release-please.yml |
Minimal workflow with scoped permissions (contents: write, pull-requests: write) that triggers release-please on main branch pushes |
release-please-config.json |
Configures simple release type with VERSION file, semantic commit types, and changelog section visibility (shows feat/fix/perf, hides docs/chore/refactor/test/ci) |
.release-please-manifest.json |
Initializes version tracking at 1.0.0 for the root package |
VERSION |
Establishes initial version as 1.0.0 for release-please tracking |
renovate.json |
Adds packageRules to auto-merge actions/* GitHub Actions with squash merge and no minimum release age |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Summary
release-pleasefor automated changelog generation and GitHub releases on merge to mainrenovate.jsonto auto-mergeactions/*GitHub Actions (matching pattern fromai-assistant-instructions)Release Please Setup
Modeled after
ai-assistant-instructionsandai-workflows:contents: write,pull-requests: writeon job only)simplerelease type using aVERSIONfile; changelog showsfeat/fix/perf, hidesdocs/chore/refactor/test/ci1.0.0(no prior releases)bump-minor-pre-major: true: feat bumps minor while version is< 1.0.0(not applicable at 1.0.0, but consistent with other repos)Renovate Update
Added
packageRulesentry to auto-mergeactions/prefixed GitHub Actions on any version (including major), withsquashmerge. This covers:actions/checkoutactions/setup-pythonactions/setup-goactions/github-scriptTest plan
feat:orfix:commit to mainactions/updates🤖 Generated with Claude Code
Important
Adds
release-pleasefor automated releases and updatesrenovate.jsonfor auto-merging GitHub Actions.release-please.ymlfor automated changelog generation and GitHub releases onmainbranch merges.googleapis/release-please-action@v4.VERSIONfile and.release-please-manifest.jsonstarting at1.0.0.renovate.jsonto auto-mergeactions/*GitHub Actions withsquashmerge.actions/checkout,actions/setup-python,actions/setup-go, andactions/github-script.This description was created by
for a0bcbee. You can customize this summary. It will automatically update as commits are pushed.