Skip to content

Commit

Permalink
Merge pull request #1197 from tier4/fix/release_description
Browse files Browse the repository at this point in the history
Update release.yaml to avoid command substitution on Markdown
  • Loading branch information
hakuturu583 authored Feb 21, 2024
2 parents 3e1f01b + 9ee6717 commit 67eb108
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/Release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- synchronize
- unlabeled
concurrency: release

jobs:
release:
name: Release
Expand Down Expand Up @@ -97,8 +97,10 @@ jobs:
format: ExternalIssueRef
continue-on-error: true
- name: Update release description
env:
PULL_REQUEST_BODY: ${{ github.event.pull_request.body }}
run: |
echo "${{ github.event.pull_request.body }}" >> release_description.txt
echo "$PULL_REQUEST_BODY" >> release_description.txt
echo "" >> release_description.txt
echo "# Related Issues " >> release_description.txt
echo "${{ steps.linked_issues.outputs.issues }}" >> release_description.txt
Expand Down

0 comments on commit 67eb108

Please sign in to comment.