-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Port-6005 ocean apply release workflow (#321)
- Loading branch information
1 parent
662867e
commit ff06dc4
Showing
2 changed files
with
28 additions
and
10 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,28 +16,46 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.11' | ||
|
||
- name: Install Poetry | ||
uses: snok/install-poetry@v1 | ||
|
||
- name: Get package version | ||
id: version | ||
run: | | ||
version=$(poetry search port-ocean | grep port-ocean | sed 's/.*(\(.*\))/\1/') | ||
pr_name="Release ${version}" | ||
branch_name="release-${version}" | ||
pr_name="Apply Ocean version $version to all integrations" | ||
branch_name="apply-ocean-$version-to-all-integrations" | ||
echo "Branch Name: $branch_name" | ||
echo "PR Name: $pr_name" | ||
git checkout -b $branch_name | ||
echo "pr_name=$pr_name" >> $GITHUB_OUTPUT | ||
echo "branch_name=$branch_name" >> $GITHUB_OUTPUT | ||
echo "version=$version" >> $GITHUB_OUTPUT | ||
- name: Apply changes | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
./scripts/bump-all.sh | ||
./scripts/bump-all.sh ^${{ steps.version.outputs.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." | ||
token: ${{ secrets.MACHINE_USER_TOKEN }} | ||
title: ${{ steps.version.outputs.pr_name }} | ||
branch: ${{ steps.version.outputs.branch_name }} | ||
base: main | ||
body: | | ||
This PR was automatically created by a GitHub Action. | ||
## What does this PR do? | ||
Apply Ocean version ${{ steps.version.outputs.version }} to all integrations | ||
## How should this be manually tested? | ||
./scripts/bump-all.sh ^${{ steps.version.outputs.version }} |
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