From 6202093be433eb4473c6b2c390d0efafa12b3d1e Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Mon, 3 Jul 2023 14:11:03 -0400 Subject: [PATCH] We were hitting the GitHub API too fast here - Add a sleep to allow the PR to index --- .github/workflows/ci-pipeline.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index c08e4aa1ab..c60e85e07f 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -1589,4 +1589,7 @@ jobs: run: build/package/winget/push_manifest.ps1 - name: Run ReleaseNotes with --link-winget - run: dotnet run -c Release --no-build --project tools/ReleaseNotes --link-winget ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + shell: powershell + run: | + Sleep 15 + dotnet run -c Release --no-build --project tools/ReleaseNotes --link-winget ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}