We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ead5ecb + c67b7d7 commit d5bc5ceCopy full SHA for d5bc5ce
.github/workflows/definitions.yml
@@ -22,14 +22,10 @@ jobs:
22
GIT_COMMITTER_NAME: ${{ vars.GHA_BOT_NAME }}
23
GIT_COMMITTER_EMAIL: ${{ vars.GHA_BOT_EMAIL }}
24
25
- - id: log
26
- run: |
27
- # TODO fix this whole PR body mess
28
- msg=$(git log --format='- %s' --reverse ${{github.sha}}..)
29
- echo "message=${msg//$'\n'/'%0A'}" >> "$GITHUB_OUTPUT"
+ - run: git log --format='- %s' --reverse ${{github.sha}}.. >> ${{ runner.temp }}/pr-body
30
- uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
31
with:
32
token: ${{ secrets.BOT_TOKEN }}
33
branch: latest-scraped-definitions
34
title: "Scraped latest definitions"
35
- body: ${{ steps.log.outputs.message }}
+ body-path: ${{ runner.temp }}/pr-body
0 commit comments