v1.13.0 #22
Workflow file for this run
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 version after release | |
# Run when release is published, or manually triggered | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
jobs: | |
bump: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Bump version | |
id: bump | |
uses: alexweininger/bump-prerelease-version@v0.1.1 | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
title: ${{ env.MESSAGE }} | |
body: Automatically created by ${{ env.RUN_LINK }} | |
commit-message: ${{ env.MESSAGE }} | |
branch: bot/bump-${{ steps.bump.outputs.new-version }} | |
base: main | |
author: GitHub <noreply@github.com> | |
token: ${{ secrets.PAT_GITHUB }} | |
env: | |
RUN_LINK: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
MESSAGE: Bump version after release |