diff --git a/.github/workflows/conda-forge.yml b/.github/workflows/conda-forge.yml index 75603d85673..61d80d5cd2b 100644 --- a/.github/workflows/conda-forge.yml +++ b/.github/workflows/conda-forge.yml @@ -57,7 +57,7 @@ jobs: steps: - run: | echo ${{ needs.build.result }} - echo ${{ needs.*.result }} + echo ${{ toJSON(needs.*.result) }} slack-notify: if: ${{ always() }} @@ -69,13 +69,13 @@ jobs: with: payload: | { - "text": "conda-forge package installation: ${{ job.status }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}", + "text": "conda-forge package installation: ${{ needs.*.result }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}", "blocks": [ { "type": "section", "text": { "type": "mrkdwn", - "text": "conda-forge package installation: ${{ job.status }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}" + "text": "conda-forge package installation: ${{ needs.*.result }}\n${{ github.event.pull_request.html_url || github.event.head_commit.url }}" } } ]