Skip to content

Commit

Permalink
chore: fix auto release extra space (#2482)
Browse files Browse the repository at this point in the history
  • Loading branch information
uyarn committed Aug 31, 2023
1 parent 97de60a commit c01d37c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [develop]
types: [opened, synchronize, reopened, closed]
paths:
- "package.json"
- 'package.json'
issue_comment:
types: [edited]

Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
BODY: ${{ github.event.comment.body }}
run: |
txt=$(cat CHANGELOG.md)
echo "${txt%%##*} $BODY ${txt##*---}" > CHANGELOG.md
echo "${txt%%##*}$BODY${txt##*---}" > CHANGELOG.md
git add .
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
Expand Down

0 comments on commit c01d37c

Please sign in to comment.