From bb22d4d2babc015752c2dd38d3a3c380ab62473e Mon Sep 17 00:00:00 2001 From: Allison Suarez Miranda <22477579+allisonsuarez@users.noreply.github.com> Date: Tue, 2 Feb 2021 12:45:01 -0800 Subject: [PATCH] fix: removed echo for changelog command (#910) * removed echo cause command doesn't need it Signed-off-by: Allison Suarez Miranda * reorganized and added committer Signed-off-by: Allison Suarez Miranda * oops Signed-off-by: Allison Suarez Miranda --- .github/workflows/monthly_release.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/monthly_release.yml b/.github/workflows/monthly_release.yml index 383ca5719..9aa8e55f1 100644 --- a/.github/workflows/monthly_release.yml +++ b/.github/workflows/monthly_release.yml @@ -30,17 +30,18 @@ jobs: git config user.email github-actions@github.com semantic-release version echo ::set-output name=version::$(semantic-release print-version --current) - echo semantic-release changelog > './CHANGELOG.md' + semantic-release changelog > './CHANGELOG.md' - 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 }} + committer: github-actions author: github-actions + signoff: true + branch: ${{ env.BRANCH_NAME }} + delete-branch: true title: Bumped version for release ${{ steps.semantic-release.outputs.version }} body: | Bumped version to ${{ steps.semantic-release.outputs.version }} team-reviewers: amundsen-io/amundsen-committers - branch: ${{ env.BRANCH_NAME }} - delete-branch: true - signoff: true