Skip to content

Commit

Permalink
fix: made change to preserve format of changelog (#896)
Browse files Browse the repository at this point in the history
* "New release for 3.3.1"

Automatically generated by python-semantic-release

* trying to preserve format of changelog

Signed-off-by: Allison Suarez Miranda <asuarezmiranda@lyft.com>

* revent v bump

Signed-off-by: Allison Suarez Miranda <asuarezmiranda@lyft.com>

Co-authored-by: semantic-release <semantic-release>
  • Loading branch information
allisonsuarez committed Jan 29, 2021
1 parent ee9b420 commit 0d56d72
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/monthly_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,17 @@ jobs:
git config user.email github-actions@github.com
semantic-release version
echo ::set-output name=version::$(semantic-release print-version --current)
echo ::set-output name=difflog::$(semantic-release changelog)
echo ::set-output name=difflog::"$(semantic-release changelog)"
- name: Create release pull request
uses: peter-evans/create-pull-request@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Bumped version to ${{ steps.semantic-release.outputs.version }}
title: Bumped version for release ${{ steps.semantic-release.outputs.version }}
author: github-actions <github-actions@github.com>
body: ${{ steps.semantic-release.outputs.difflog }}
title: Bumped version for release ${{ steps.semantic-release.outputs.version }}
body: |
Bumped version to ${{ steps.semantic-release.outputs.version }}
${{ steps.semantic-release.outputs.difflog }}
team-reviewers: amundsen-io/amundsen-committers
branch: ${{ env.BRANCH_NAME }}
delete-branch: true
Expand Down

0 comments on commit 0d56d72

Please sign in to comment.