Skip to content

Commit

Permalink
update peter-evans/create-pull-request to v6
Browse files Browse the repository at this point in the history
  • Loading branch information
campersau committed Feb 7, 2024
1 parent 3efb148 commit 0f70816
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
- run: npm ci
- run: |
body="$(npm run bumpdependencies)"
body="${body#"${body%%[![:space:]]*}"}"
body="${body%"${body##*[![:space:]]}"}"
echo "$body"
echo "body<<EOF" >> $GITHUB_OUTPUT
echo "$body" >> $GITHUB_OUTPUT
Expand All @@ -32,11 +34,14 @@ jobs:
- run: npm install

- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
commit-message: Bump Dependencies
commit-message: |
Bump Dependencies
${{ steps.bumpdependencies.outputs.body }}
title: Bump Dependencies
body: |
```
Expand Down

0 comments on commit 0f70816

Please sign in to comment.