mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
29 lines
776 B
YAML
29 lines
776 B
YAML
name: Release drafter
|
|
|
|
on:
|
|
push:
|
|
# branches to consider in the event; optional, defaults to all
|
|
branches:
|
|
- main
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
update_release_draft:
|
|
permissions:
|
|
contents: write # for release-drafter/release-drafter to create a github release
|
|
pull-requests: write # for release-drafter/release-drafter to add label to PR
|
|
if: github.repository == 'python-pillow/Pillow'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
# Drafts your next release notes as pull requests are merged into "main"
|
|
- uses: release-drafter/release-drafter@v6
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|