mirror of
https://github.com/astral-sh/ruff-action.git
synced 2026-08-08 02:07:02 +00:00
## Summary - roll up remaining open Dependabot npm updates for @octokit/core and @octokit/plugin-rest-endpoint-methods - roll up remaining GitHub Actions pin updates for CodeQL, zizmor, release-drafter, setup-node, and create-pull-request - regenerate bundled dist files ## Validation - npm run all Refs: pi-session 019f31b8-93d9-7f9b-b3e9-5aaac6bab959
25 lines
541 B
YAML
25 lines
541 B
YAML
---
|
|
name: Release Drafter
|
|
|
|
# yamllint disable-line rule:truthy
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
update_release_draft:
|
|
name: ✏️ Draft release
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write
|
|
pull-requests: read
|
|
steps:
|
|
- name: 🚀 Run Release Drafter
|
|
uses: release-drafter/release-drafter@c2e2804cc59f45f57076a99af580d0fedb697927 # v7.3.0
|
|
with:
|
|
commitish: ${{ github.sha }}
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|