Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/beta-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
jobs:
release-management:
runs-on: ubuntu-latest
# Observed fleet-wide: n=26 runs, max 0.7 min; bounded loosely at 45 min because a spurious release failure is expensive
timeout-minutes: 45
steps:

- name: Checkout Code
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/build-exapp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ env:
jobs:
build:
runs-on: ubuntu-latest
# No successful runs observed yet (multi-arch docker build); bounded loosely at 30 min
timeout-minutes: 30
permissions:
contents: read
packages: write
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pull-request-from-branch-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
jobs:
check-branch:
runs-on: ubuntu-latest
# Observed fleet-wide: n=123 runs, max 0.1 min
timeout-minutes: 10
steps:
- name: Check branch
run: |
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/pull-request-lint-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
jobs:
lint-check:
runs-on: ubuntu-latest
# Observed fleet-wide: n=176 runs, median 0.6 min, max 1.4 min
timeout-minutes: 15

steps:
- name: Checkout repository
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/push-development-to-beta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ on:
jobs:
create-pr:
runs-on: ubuntu-latest
# Observed fleet-wide: n=152 runs, max 5.6 min
timeout-minutes: 20
steps:
- name: Checkout Code
uses: actions/checkout@v3
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ on:
jobs:
release-management:
runs-on: ubuntu-latest
# Observed fleet-wide: n=26 runs, max 0.7 min; bounded loosely at 45 min because a spurious release failure is expensive
timeout-minutes: 45
steps:

- name: Checkout Code
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/unstable-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
jobs:
release-management:
runs-on: ubuntu-latest
# Observed fleet-wide: n=26 runs, max 0.7 min; bounded loosely at 45 min because a spurious release failure is expensive
timeout-minutes: 45
steps:

- name: Checkout Code
Expand Down
Loading