Skip to content

Commit

Permalink
Merge branch 'main' into node20-simple
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Aug 28, 2023
2 parents ae085eb + ec637da commit db80536
Showing 1 changed file with 16 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/itself.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ permissions:

jobs:
# Keep sequential to avoid infinite loop
equal_intervals: # make sure the action works on a clean machine without building
exponential_backoff:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }}
timeout-minutes: 5
Expand All @@ -28,15 +28,27 @@ jobs:
- uses: ./
continue-on-error: true
with:
github-token: '${{ secrets.GITHUB_TOKEN }}'
retry-method: 'exponential_backoff'
min-interval-seconds: 5
attempt-limits: 2
equal_intervals:
needs: [exponential_backoff]
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }}
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: ./
continue-on-error: true
with:
retry-method: 'equal_intervals'
min-interval-seconds: 10
attempt-limits: 2
attempt-limits: 60
default:
needs: [equal_intervals]
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' && github.actor != 'renovate[bot]' }}
timeout-minutes: 10
timeout-minutes: 5
steps:
- uses: actions/checkout@v3
- uses: ./

0 comments on commit db80536

Please sign in to comment.