Skip to content

Commit

Permalink
[#557] Change create release PR approach
Browse files Browse the repository at this point in the history
  • Loading branch information
markgravity committed Dec 27, 2024
1 parent 44efb98 commit 8bb37ad
Showing 1 changed file with 5 additions and 25 deletions.
30 changes: 5 additions & 25 deletions .github/project_workflows/create_release_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8bb37ad

Please sign in to comment.