Skip to content

Commit

Permalink
build(build-test-deploy.yml): reduce retries to 6, timeout to 10 minutes
Browse files Browse the repository at this point in the history
  • Loading branch information
Xunnamius committed Feb 21, 2021
1 parent 7487215 commit e748b1f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ env:

# * Selectively enable debugger verbose output in the pipeline
# ? See also: https://www.npmjs.com/package/debug#wildcards
# DEBUG: '@xunnamius/dummy-pkg-1:*'
# DEBUG: '@xunnamius/dummy-pkg-2:*'

# * The version of node to load into each job. Must NOT be quoted!
NODE_CURRENT_VERSION: 15.x
Expand Down Expand Up @@ -722,7 +722,7 @@ jobs:
auto-merge:
name: '[CD] auto-merge'
runs-on: ubuntu-latest
timeout-minutes: 15
timeout-minutes: 10
needs:
- build
- check-audit
Expand Down Expand Up @@ -755,7 +755,7 @@ jobs:
with:
github-token: ${{ secrets.GH_TOKEN }}
script: |
const MAX_RETRIES = 7;
const MAX_RETRIES = 6;
const MINIMUM_SECONDS = 10;
const JITTER_SECONDS = 10;
Expand Down

0 comments on commit e748b1f

Please sign in to comment.