-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rework prepare release workflow to use new variables
Destructured into multiple jobs to create two PRs simultaneously
- Loading branch information
1 parent
2ad5cc6
commit 1a2bff1
Showing
1 changed file
with
30 additions
and
22 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 |
---|---|---|
|
@@ -5,26 +5,30 @@ on: | |
- "release/**" | ||
|
||
jobs: | ||
build: | ||
name: Update changelog and create pull requests | ||
version: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
version: ${{ steps.variables.outputs.VERSION }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Install GitVersion | ||
uses: gittools/actions/gitversion/[email protected] | ||
with: | ||
versionSpec: '5.3.x' | ||
# Set brand specific variables | ||
- name: Environment variables | ||
id: variables | ||
run: ./.github/scripts/variables.sh --brand swedbankpay --ref ${{ github.ref }} | ||
|
||
- name: Use GitVersion | ||
id: gitversion | ||
uses: gittools/actions/gitversion/[email protected] | ||
changelog: | ||
runs-on: ubuntu-latest | ||
needs: version | ||
outputs: | ||
body: ${{ steps.pr-body.outputs.body }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Update changelog | ||
id: changelog | ||
run: ./.github/scripts/update-changelog.sh ${{ steps.gitversion.outputs.MajorMinorPatch }} | ||
run: ./.github/scripts/update-changelog.sh ${{ needs.version.outputs.version }} | ||
|
||
# Content must be escaped to preserve newlines (https://github.community/t/set-output-truncates-multiline-strings/16852/3) | ||
- name: Get pull request body | ||
|
@@ -33,27 +37,31 @@ jobs: | |
body=$(cat RELEASE-NOTES.md) | ||
body="${body//'%'/'%25'}" | ||
body="${body//$'\n'/'%0A'}" | ||
body="${body//$'\r'/'%0D'}" | ||
body="${body//$'\r'/'%0D'}" | ||
echo ::set-output name=body::$body | ||
create-pr-master: | ||
runs-on: ubuntu-latest | ||
needs: [version, changelog] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Create pull requests | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
base: master | ||
body: ${{ steps.pr-body.outputs.body }} | ||
body: ${{ needs.changelog.outputs.body }} | ||
branch: ${{ github.ref }} | ||
title: Release ${{ steps.gitversion.outputs.MajorMinorPatch }} | ||
title: Release ${{ needs.version.outputs.version }} (master) | ||
|
||
create-pr-develop: | ||
runs-on: ubuntu-latest | ||
needs: [version, changelog] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
# Can we automatically merge this branch into develop once it's merged to master without having to create two PRs? [THN] | ||
|
||
- name: Create pull requests | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
base: develop | ||
body: ${{ steps.pr-body.outputs.body }} | ||
body: ${{ needs.changelog.outputs.body }} | ||
branch: ${{ github.ref }} | ||
title: Release ${{ steps.gitversion.outputs.MajorMinorPatch }} | ||
title: Release ${{ needs.version.outputs.version }} (develop) |