From 74ef85d676e5ac990ca1512e3e782c0b4adea2c1 Mon Sep 17 00:00:00 2001 From: Evgeny Karpov Date: Wed, 23 Aug 2023 12:38:50 +0200 Subject: [PATCH] * fix multiline command --- .github/workflows/ci-arm64.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci-arm64.yml b/.github/workflows/ci-arm64.yml index 85649ed9d1395..475e8b3b7bbb0 100644 --- a/.github/workflows/ci-arm64.yml +++ b/.github/workflows/ci-arm64.yml @@ -166,11 +166,11 @@ jobs: git commit -am "-add a benchmark snapshot" git push origin benchmark_snapshot PR_RESPONSE=$(curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ - -d '{ - "title": "Add benchmark snapshot", - "body": "", - "head": "benchmark_snapshot", - "base": "${{ github.event.repository.default_branch }}" - }' \ - https://api.github.com/repos/$GITHUB_REPOSITORY/pulls) + -d '{ \ + "title": "Add benchmark snapshot", \ + "body": "", \ + "head": "benchmark_snapshot", \ + "base": "${{ github.event.repository.default_branch }}" \ + }' \ + https://api.github.com/repos/$GITHUB_REPOSITORY/pulls) echo "$PR_RESPONSE"