Skip to content

Commit 59c4c2f

Browse files
committed
Set job timeout to 15 minutes.
1 parent 3ce224e commit 59c4c2f

File tree

5 files changed

+6
-0
lines changed

5 files changed

+6
-0
lines changed

.github/workflow-gen/Program.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ void GenerateCiWorkflow(Component component)
5050
.Defaults().Run("bash", component.Name)
5151
.Job;
5252

53+
job.TimeoutMinutes(15);
54+
5355
job.Step()
5456
.ActionsCheckout();
5557

.github/workflows/access-token-management-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
run:
2323
shell: bash
2424
working-directory: access-token-management
25+
timeout-minutes: 15
2526
steps:
2627
- name: Checkout
2728
uses: actions/checkout@v4

.github/workflows/identity-model-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
run:
2323
shell: bash
2424
working-directory: identity-model
25+
timeout-minutes: 15
2526
steps:
2627
- name: Checkout
2728
uses: actions/checkout@v4

.github/workflows/identity-model-oidc-client-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
run:
2323
shell: bash
2424
working-directory: identity-model-oidc-client
25+
timeout-minutes: 15
2526
steps:
2627
- name: Checkout
2728
uses: actions/checkout@v4

.github/workflows/ignore-this-ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
run:
2323
shell: bash
2424
working-directory: ignore-this
25+
timeout-minutes: 15
2526
steps:
2627
- name: Checkout
2728
uses: actions/checkout@v4

0 commit comments

Comments
 (0)