diff options
| author | matt korwel <[email protected]> | 2025-07-04 18:32:58 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-05 01:32:58 +0000 |
| commit | 7aa67f324c97c6cd7109301ff6a68b0d326c02a7 (patch) | |
| tree | 99999e2fbf801962b4805583a5397502749938e1 /.github | |
| parent | e90e0015eacda0cf8315e30b72305e026f3768b3 (diff) | |
Mk sign nightly release commits (#3264)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/scheduled-nightly-release.yml | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/.github/workflows/scheduled-nightly-release.yml b/.github/workflows/scheduled-nightly-release.yml index f55d5570..657416b1 100644 --- a/.github/workflows/scheduled-nightly-release.yml +++ b/.github/workflows/scheduled-nightly-release.yml @@ -33,15 +33,21 @@ jobs: run: npm run preflight - name: Run Integration Tests (without Docker) - uses: nick-invision/retry@v2 + uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 + env: + GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }} with: + timeout_minutes: 10 max_attempts: 3 retry_wait_seconds: 30 command: npm run test:integration:sandbox:none - name: Run Integration Tests (with Docker) - uses: nick-invision/retry@v2 + uses: nick-fields/retry@ce71cc2ab81d554ebbe88c79ab5975992d79ba08 + env: + GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }} with: + timeout_minutes: 10 max_attempts: 3 retry_wait_seconds: 30 command: npm run test:integration:sandbox:docker @@ -63,6 +69,6 @@ jobs: gh issue create \ --title "Nightly Release Failed on $(date +'%Y-%m-%d')" \ --body "The scheduled nightly release workflow failed. See the full run for details: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ - --label "bug,nightly-failure" + --label "type: bug,nightly-failure" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
