From 1c0fe2fa1fb7a6513d1f6934ad6c5b5e7a84b87a Mon Sep 17 00:00:00 2001 From: Michael Keller Date: Tue, 14 May 2024 12:53:10 +1200 Subject: [PATCH] Fix GitHub Workflow definition. Signed-off-by: Michael Keller --- .github/workflows/artifact-links.yml | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.github/workflows/artifact-links.yml b/.github/workflows/artifact-links.yml index 10df05101..48f3b6bde 100644 --- a/.github/workflows/artifact-links.yml +++ b/.github/workflows/artifact-links.yml @@ -9,20 +9,21 @@ jobs: artifacts-url-comments: name: Add artifact links to PR and issues runs-on: ubuntu-22.04 + steps: - - name: Dump GitHub context + - name: Dump GitHub context env: GITHUB_CONTEXT: ${{ toJson(github) }} run: | echo "GitHub context: $GITHUB_CONTEXT" - - name: Add artifact links to PR and issues - uses: tonyhallett/artifacts-url-comments@v1.1.0 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - prefix: "**Artifacts:**" - suffix: "_**WARNING:** Use at your own risk._" - format: name - addTo: pull + - name: Add artifact links to PR and issues + uses: tonyhallett/artifacts-url-comments@v1.1.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + prefix: "**Artifacts:**" + suffix: "_**WARNING:** Use at your own risk._" + format: name + addTo: pull