From 72511c91a9309445e34ea04bc548e6189b5a3d34 Mon Sep 17 00:00:00 2001 From: jaeyonglee0205 Date: Fri, 1 Mar 2024 13:01:41 +0900 Subject: [PATCH] fix format --- .github/workflows/fix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/fix.yml b/.github/workflows/fix.yml index ba387d88..18c80770 100644 --- a/.github/workflows/fix.yml +++ b/.github/workflows/fix.yml @@ -34,7 +34,7 @@ jobs: run: | body_1=$(cat body_1.txt) body_2=$(python debug/iterate_report.py) - body=$(cat issue_template.md | sed -e "s/{{BODY_1}}/$body_1/" | sed -e "s/{{BODY_2}}/$body_2/") + body=$(cat issue_template.md | sed -e 's/{{BODY_1}}/$body_1/' -e 's/{{BODY_2}}/$body_2/') gh issue create -t "Output of Github Action" -b "$(body)" -l "auto" env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}