Skip to content

Removes vortex_unwrap completely in favor of vortex_expect (#5805) #2980

Removes vortex_unwrap completely in favor of vortex_expect (#5805)

Removes vortex_unwrap completely in favor of vortex_expect (#5805) #2980

name: Release Drafter
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
on:
push:
branches:
- develop
workflow_dispatch:
# Permits a custom run to create a pre-release
inputs:
prerelease-identifier:
description: "RC identifier (e.g., rc, beta, alpha)"
type: string
default: "rc"
permissions:
contents: read
jobs:
update_release_draft:
permissions:
# write permission is required to create a github release
contents: write
runs-on: ubuntu-latest
steps:
- uses: release-drafter/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
commitish: ${{ github.ref_name }}
prerelease: ${{ github.event_name == 'workflow_dispatch' }}
prerelease-identifier: ${{ inputs.prerelease-identifier || '' }}