Conversation
eifinger
approved these changes
Apr 3, 2026
Collaborator
eifinger
left a comment
There was a problem hiding this comment.
Looks good and the benefits you describe sound like reason enough to move away from the manual releases.
To clarify I understood this correctly:
- Release Drafter continues to creates the draft with all the PRs linked and categorized by label
- I add the manually created release text
- I start this workflow to change the release from draft to released and create the tag
Member
Author
|
Sounds correct to me! |
Member
Author
|
The only addendum would be 4. Poke the Astral team for a release workflow approval |
eifinger
pushed a commit
to astral-sh/ruff-action
that referenced
this pull request
Apr 9, 2026
luketainton
pushed a commit
to luketainton/repos_pypilot
that referenced
this pull request
Apr 17, 2026
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) | action | minor | `v8.0.0` → `v8.1.0` | --- ### Release Notes <details> <summary>astral-sh/setup-uv (astral-sh/setup-uv)</summary> ### [`v8.1.0`](https://github.com/astral-sh/setup-uv/releases/tag/v8.1.0): 🌈 New input `no-project` [Compare Source](astral-sh/setup-uv@v8.0.0...v8.1.0) #### Changes This add the a new boolean input `no-project`. It only makes sense to use in combination with `activate-environment: true` and will append `--no project` to the `uv venv` call. This is for example useful [if you have a pyproject.toml file with parts unparseable by uv](astral-sh/setup-uv#854) #### 🚀 Enhancements - Add input no-project in combination with activate-environment [@​eifinger](https://github.com/eifinger) ([#​856](astral-sh/setup-uv#856)) #### 🧰 Maintenance - fix: grant contents:write to validate-release job [@​eifinger](https://github.com/eifinger) ([#​860](astral-sh/setup-uv#860)) - Add a release-gate step to the release workflow [@​zanieb](https://github.com/zanieb) ([#​859](astral-sh/setup-uv#859)) - Draft commitish releases [@​eifinger](https://github.com/eifinger) ([#​858](astral-sh/setup-uv#858)) - Add action-types.yml to instructions [@​eifinger](https://github.com/eifinger) ([#​857](astral-sh/setup-uv#857)) - chore: update known checksums for 0.11.7 @​[github-actions\[bot\]](https://github.com/apps/github-actions) ([#​853](astral-sh/setup-uv#853)) - Refactor version resolving [@​eifinger](https://github.com/eifinger) ([#​852](astral-sh/setup-uv#852)) - chore: update known checksums for 0.11.6 @​[github-actions\[bot\]](https://github.com/apps/github-actions) ([#​850](astral-sh/setup-uv#850)) - chore: update known checksums for 0.11.5 @​[github-actions\[bot\]](https://github.com/apps/github-actions) ([#​845](astral-sh/setup-uv#845)) - chore: update known checksums for 0.11.4 @​[github-actions\[bot\]](https://github.com/apps/github-actions) ([#​843](astral-sh/setup-uv#843)) - Add a release workflow [@​zanieb](https://github.com/zanieb) ([#​839](astral-sh/setup-uv#839)) - chore: update known checksums for 0.11.3 @​[github-actions\[bot\]](https://github.com/apps/github-actions) ([#​836](astral-sh/setup-uv#836)) #### 📚 Documentation - Update ignore-nothing-to-cache documentation [@​eifinger](https://github.com/eifinger) ([#​833](astral-sh/setup-uv#833)) - Pin setup-uv docs to v8 [@​eifinger](https://github.com/eifinger) ([#​829](astral-sh/setup-uv#829)) #### ⬆️ Dependency updates - chore(deps): bump release-drafter/release-drafter from 7.1.1 to 7.2.0 @​[dependabot\[bot\]](https://github.com/apps/dependabot) ([#​855](astral-sh/setup-uv#855)) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xMjYuMCIsInVwZGF0ZWRJblZlciI6IjQzLjEyNi4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJ0eXBlL2RlcGVuZGVuY2llcyJdfQ==--> Reviewed-on: https://git.tainton.uk/repos/pypilot/pulls/436 Co-authored-by: renovate[bot] <renovate-bot@git.tainton.uk> Co-committed-by: renovate[bot] <renovate-bot@git.tainton.uk>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uses a release workflow with environment protection for publishing releases instead of relying on user invocation.
The
releaseenvironment can then be protected, e.g., requiring approval from another team member. We can add a tag ruleset to prevent tags from being created outside of thereleaseenvironment.I've never used Release drafter, but the workflow here differs from our other projects in that the release process just marks the draft release as final and adds the tag. The draft release is required, for simplicity.