Skip to content

Commit

Permalink
Fail early; fail fast. None of these should take more than 30 seconds…
Browse files Browse the repository at this point in the history
… to complete. Appears they are failing due to an upstream bug, so if they are to fail, let them fail fast instead of burning through minutes and resources wastefully.
  • Loading branch information
othyn committed Nov 30, 2023
1 parent e199893 commit 61342c8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/00-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
lint:
name: Lint
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 1

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/10-calendars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
build:
name: Generate Calendars
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 1

steps:
- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/20-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
deploy:
name: Deploy Site
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 1
if: ${{ github.event.workflow_run.conclusion == 'success' }}

environment:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/30-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
build:
name: Automated Release
runs-on: ubuntu-latest
timeout-minutes: 5
timeout-minutes: 1
if: ${{ github.event.workflow_run.conclusion == 'success' }}

steps:
Expand Down

0 comments on commit 61342c8

Please sign in to comment.