From 616072405609c8796486b977a3a5f1f0a1933073 Mon Sep 17 00:00:00 2001 From: Christopher Dilks Date: Mon, 9 Oct 2023 18:58:54 -0400 Subject: [PATCH] style: use block scalar for validation dispatch payload --- .github/workflows/validation.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index 7a56b0108..81d550b79 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -25,9 +25,10 @@ jobs: github_token: ${{ secrets.CLAS12VALIDATION }} workflow_file_name: ci.yml ref: main - client_payload: '{ - "source": "${{ github.repository }}", - "title": "${{ github.event.pull_request.title || github.event.head_commit.message }}", - "source_url": "${{ github.event.pull_request.html_url }}", - "git_coatjava": "{\"fork\": \"${{ github.repository }}\", \"branch\": \"${{ github.head_ref || github.ref }}\" }" - }' + client_payload: >- + { + "source": "${{ github.repository }}", + "title": "${{ github.event.pull_request.title || github.event.head_commit.message }}", + "source_url": "${{ github.event.pull_request.html_url }}", + "git_coatjava": "{\"fork\": \"${{ github.repository }}\", \"branch\": \"${{ github.head_ref || github.ref }}\" }" + }