From dc193f39d0b48986e373208e76f53f5dd7b8f01a Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Mon, 4 Mar 2024 14:18:14 -0500 Subject: [PATCH] Document why this sleep is here --- .github/workflows/ci-pipeline.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index d136649c08..5ac90a2d70 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -1970,8 +1970,10 @@ jobs: shell: powershell run: build/package/winget/push_manifest.ps1 + - name: Delay 10m to allow MS bot to update PR + shell: powershell + run: Sleep 600 + - name: Run ReleaseNotes with --link-winget shell: powershell - run: | - Sleep 600 - dotnet run -c Release --no-build --project tools/Tgstation.Server.ReleaseNotes --link-winget ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} + run: dotnet run -c Release --no-build --project tools/Tgstation.Server.ReleaseNotes --link-winget ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}