-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#557] Change create release PR approach
- Loading branch information
1 parent
44efb98
commit 8bb37ad
Showing
1 changed file
with
5 additions
and
25 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 |
---|---|---|
|
@@ -21,38 +21,18 @@ jobs: | |
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Find HEAD commit | ||
id: head | ||
run: echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT | ||
|
||
- name: Build changelog on "main" | ||
id: changelog | ||
uses: mikepenz/release-changelog-builder-action@v4 | ||
with: | ||
configuration: ".github/workflows/configs/changelog-config.json" | ||
# Listing PRs from the last tag to the HEAD commit | ||
toTag: ${{ steps.head.outputs.sha }} | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Prepare variables | ||
- name: Get release version | ||
run: | | ||
filename=$(find . -maxdepth 1 -name "*.xcodeproj" -exec basename {} .xcodeproj \; | head -n 1) | ||
release_version=$(sed -n 's/.*MARKETING_VERSION *= *\([^;]*\);.*/\1/p' "$filename.xcodeproj/project.pbxproj" | head -n 1 | sed 's/^[^=]*=\s*//' | tr -d ' ') | ||
echo $release_version | ||
echo "RELEASE_VERSION=$release_version" >> "$GITHUB_ENV" | ||
echo "${{ steps.changelog.outputs.changelog }}" | sed 's/"/\\"/g' > escaped-changelog.txt | ||
- name: Create Release branch | ||
uses: peterjgrainger/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- uses: nimblehq/github-actions-workflows/[email protected] | ||
with: | ||
branch: release/${{ env.RELEASE_VERSION }} | ||
|
||
- name: Create pull request | ||
run: gh pr create --draft -B main -H release/${{ env.RELEASE_VERSION }} -t 'Release - ${{ env.RELEASE_VERSION }}' -b "$(cat escaped-changelog.txt)" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
release_version: ${{ env.RELEASE_VERSION }} | ||
changelog_configuration: ".github/workflows/config/changelog-config.json" | ||
assignee: bot-nimble | ||
|
||
create_bump_version_pull_request: | ||
name: Create Bump Version Pull Request | ||
|