Apply release #26
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: Apply release | |
on: | |
workflow_run: | |
workflows: | |
- Release framework | |
types: | |
- completed | |
workflow_dispatch: | |
jobs: | |
create_branch_and_open_pr: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python 3.11 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
- name: Get package version | |
run: | | |
echo $(poetry search port-ocean) | |
version=$(poetry search port-ocean | grep port-ocean | sed 's/.*(\(.*\))/\1/') | |
pr_name="Release ${version}" | |
branch_name="release-${version}" | |
echo "Branch Name: $branch_name" | |
echo "PR Name: $pr_name" | |
git checkout -b $branch_name | |
- name: Apply changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
./scripts/bump-all.sh ${version} | |
git push origin $branch_name | |
- name: Open pull request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: "Propose changes" | |
title: $pr_name | |
body: "This pull request includes changes made in the feature branch." |