From e1cbe4ce6a64c69e228f702fc506becd46d80f3b Mon Sep 17 00:00:00 2001 From: Robert Brennan Date: Tue, 9 Aug 2022 12:00:22 -0400 Subject: [PATCH] Update triage.yml --- .github/workflows/triage.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/triage.yml b/.github/workflows/triage.yml index 8ecef79a..4460623d 100644 --- a/.github/workflows/triage.yml +++ b/.github/workflows/triage.yml @@ -24,10 +24,11 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Scheduled Reminders env: - TITLES: ( "${{ join(fromJSON(steps.need_triage.outputs.data).*.title, '" "') }}" ) + TITLES: ${{ join(fromJSON(steps.need_triage.outputs.data).*.title, ';;;') }} run: | echo "Scheduled reminder! ${TITLES}" - for i in "${TITLES[@]}"; do + titles=($(echo "${TITLES}" | tr ";;;" "\n")) + for i in "${titles[@]}"; do echo "title: $i" done - name: Issue Notification