collapse inner section (#61) #14
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: Check out new version | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
checkout: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create tag branch | |
run: | | |
git checkout -b release-${{ github.ref_name }} | |
git push origin release-${{ github.ref_name }} | |
- name: Check out new version | |
run: ./check-out-version.sh --version ${{ github.ref_name }} --force | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: Check out new version ${{ github.ref_name }} | |
title: Check out new version ${{ github.ref_name }} | |
body: | | |
This PR checks out the `${{ github.ref_name }}` docs. | |
Please review the changes by clicking on the `Preview URL` below and make sure that everything looks good. | |
> Auto-generated by [create-pull-request][1] | |
[1]: https://github.com/peter-evans/create-pull-request | |
branch: release-${{ github.ref_name }} | |
base: main | |
labels: | | |
documentation | |
release |