Create Release Branch #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: "Create Release Branch" | |
on: | |
workflow_dispatch: | |
jobs: | |
create-release-branch: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
- name: "Set up Python" | |
uses: "actions/setup-python@v5" | |
with: | |
python-version: "3.11" | |
- name: "Setup git" | |
run: | | |
git config user.name pulpbot | |
git config user.email [email protected] | |
- name: "Install python dependencies" | |
run: | | |
pip install bump-my-version~=0.20.0 | |
- name: "Create Release Branch" | |
run: | | |
.ci/scripts/create_release_branch.sh | |
- name: "Create Pull Request" | |
uses: "peter-evans/create-pull-request@v6" | |
with: | |
token: "${{ secrets.RELEASE_TOKEN }}" | |
title: "Bump dev-version" | |
body: "" | |
branch: "bump_version" | |
delete-branch: true |