mirror of
https://github.com/astral-sh/setup-uv.git
synced 2025-01-20 00:58:20 +08:00
0fa3b93f6e
## Summary Partly personal preference, but mostly to align with other Astral projects.
20 lines
380 B
YAML
20 lines
380 B
YAML
---
|
|
name: Release Drafter
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update_release_draft:
|
|
name: ✏️ Draft release
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 🚀 Run Release Drafter
|
|
uses: release-drafter/release-drafter@v6.0.0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|