Skip to content

Commit

Permalink
Create apply-release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
yairsimantov20 authored Dec 5, 2023
1 parent d72e6ff commit 89a9879
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/apply-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
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@v2

- name: Get package version
run: |
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
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."

0 comments on commit 89a9879

Please sign in to comment.