mirror of
https://github.com/astral-sh/setup-uv.git
synced 2026-07-07 12:11:34 +00:00
## Summary - Roll up open Dependabot npm and GitHub Actions updates - Update Biome schema to 2.4.16 - Regenerate bundled dist artifacts ## Validation - npm run all Refs: pi-session 019f3160-c4af-7606-b4be-648e0abff131
27 lines
561 B
YAML
27 lines
561 B
YAML
---
|
|
name: Release Drafter
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
update_release_draft:
|
|
name: ✏️ Draft release
|
|
runs-on: ubuntu-24.04-arm
|
|
permissions:
|
|
contents: write
|
|
pull-requests: read
|
|
steps:
|
|
- name: 🚀 Run Release Drafter
|
|
uses: release-drafter/release-drafter@4d75298e00d9e34c483e5ff8c68d0ea1c1940c1e # v7.5.1
|
|
with:
|
|
commitish: ${{ github.sha }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|