From 382fec8b8af67274dc765257f86ea37e7c1bbfd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Taavi=20V=C3=A4=C3=A4n=C3=A4nen?= Date: Mon, 29 Sep 2025 12:13:47 +0300 Subject: [PATCH] builds: Fix multi-line curl command --- .github/workflows/notification.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/notification.yaml b/.github/workflows/notification.yaml index 7ad22ef5..aea8b925 100644 --- a/.github/workflows/notification.yaml +++ b/.github/workflows/notification.yaml @@ -31,7 +31,7 @@ jobs: inital_commit=$(git log origin/main..origin/${{ github.head_ref }} --pretty=%H | tail -n1) curl ${{ github.event.pull_request._links.commits.href }} | jq .[0].commit.message -r | grep "^Bug: T[0-9]*$" | awk '{print $2}' | while IFS= read -r done; do curl https://phabricator.wikimedia.org/api/maniphest.edit \ - -H "User-Agent: WMCS/paws github notifications" + -H "User-Agent: WMCS/paws github notifications" \ -d api.token=${{ secrets.TOOLFORGE_PHAB_BOT_KEY }} \ -d transactions[0][type]=comment \ -d transactions[0][value]="${message}" \