Skip to content

✨ Prep release

✨ Prep release #9

Workflow file for this run

name: "✨ Prep release"
on:
workflow_dispatch:
inputs:
version:
description: "The new version"
type: "string"
required: true
jobs:
prep_release:
name: "Prep release v${{ inputs.version }}"
permissions:
contents: "write"
pull-requests: "write"
strategy:
matrix:
include:
- tox-label-create-changes: "prep_release"
branch-name: "release/$VERSION"
commit-title: "Update project metadata"
pr-base: "releases"
pr-title: "Release v$VERSION"
uses: "kurtmckee/github-workflows/.github/workflows/create-pr.yaml@19c3c069be51d3bfc3ac73e85e81b2b1646e91a8" # v1.7
with:
config: "${{ toJSON(matrix) }}"
version: "${{ inputs.version }}"