From 805383a75c173e769c67714c6604a27b02b049de Mon Sep 17 00:00:00 2001 From: Geoff Hutchison Date: Thu, 9 Jun 2022 16:10:10 -0400 Subject: [PATCH] Make sure to add artifacts for selfhosted Also continue even if error (i.e., don't fail for merge to main) Signed-off-by: Geoff Hutchison --- .github/workflows/add_artifact_urls.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/add_artifact_urls.yml b/.github/workflows/add_artifact_urls.yml index 51b7a4ce3c..075044ea75 100644 --- a/.github/workflows/add_artifact_urls.yml +++ b/.github/workflows/add_artifact_urls.yml @@ -1,7 +1,7 @@ name: add artifact links to pull request and related issues on: workflow_run: - workflows: ['CMake Build Matrix'] + workflows: ['CMake Build Matrix', 'CMake Self-Hosted'] types: [completed] jobs: @@ -10,7 +10,7 @@ jobs: runs-on: windows-2019 steps: - name: add artifact links to pull request and related issues step - uses: tonyhallett/artifacts-url-comments@v1.0.0 + uses: tonyhallett/artifacts-url-comments@v1.1.0 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: @@ -18,3 +18,4 @@ jobs: suffix: Artifacts will only be retained for 90 days. format: name addTo: pullandissues + continue-on-error: true