Removes vortex_unwrap completely in favor of vortex_expect (#5805) #2980
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 || '' }} |