Skip to content

Commit 046a5fb

Browse files
authored
[MPT-18998] Increased workflow timeout to 90 minutes (#228)
This pull request increases the build job timeout from 60 minutes to 90 minutes across several GitHub Actions workflow files. This change ensures that longer-running builds have sufficient time to complete, reducing the likelihood of jobs failing due to timeout. **CI/CD workflow updates:** * Increased the `timeout-minutes` value from 60 to 90 for the `build` job in the following workflow files: - `.github/workflows/cron-main-e2e.yml` - `.github/workflows/pull-request.yml` - `.github/workflows/push-release-branch.yml` - `.github/workflows/release.yml` <!-- This is an auto-generated comment: release notes by coderabbit.ai --> Closes [MPT-18998](https://softwareone.atlassian.net/browse/MPT-18998) - Increased GitHub Actions workflow `build` job timeout from 60 to 90 minutes across all workflow files - Updated workflows: - `.github/workflows/cron-main-e2e.yml` - `.github/workflows/pull-request.yml` - `.github/workflows/push-release-branch.yml` - `.github/workflows/release.yml` - Allows longer-running builds sufficient time to complete and reduces job failures due to timeouts <!-- end of auto-generated comment: release notes by coderabbit.ai --> [MPT-18998]: https://softwareone.atlassian.net/browse/MPT-18998?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ
2 parents ed1c921 + 66f0d1f commit 046a5fb

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/cron-main-e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
jobs:
77
build:
88
runs-on: ubuntu-latest
9-
timeout-minutes: 60
9+
timeout-minutes: 90
1010
steps:
1111
- name: "Checkout"
1212
uses: actions/checkout@v6

.github/workflows/pull-request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build:
1212

1313
runs-on: ubuntu-latest
14-
timeout-minutes: 60
14+
timeout-minutes: 90
1515

1616
steps:
1717
- name: "Checkout"

.github/workflows/push-release-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build:
1414

1515
runs-on: ubuntu-latest
16-
timeout-minutes: 60
16+
timeout-minutes: 90
1717

1818
steps:
1919
- name: "Checkout"

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
build:
1313

1414
runs-on: ubuntu-latest
15-
timeout-minutes: 60
15+
timeout-minutes: 90
1616

1717
steps:
1818
- name: "Checkout"

0 commit comments

Comments
 (0)