Bump #1
This file contains 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: Bump | |
on: | |
workflow_dispatch: | |
inputs: | |
crate: | |
description: Crate to bump (anything which depends on this crate will also be bumped) | |
type: choice | |
default: wdl-grammar | |
options: | |
- wdl-grammar | |
- wdl-ast | |
- wdl-lint | |
- wdl-analysis | |
- wdl-lsp | |
- wdl | |
jobs: | |
bump: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update Rust | |
run: rustup update stable && rustup default stable | |
- run: cargo run --release --bin ci -- bump --crates-to-bump ${{ inputs.crate }} | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v7 | |
with: | |
branch: chore/bump | |
title: "release: bump versions" |