Skip to content

Commit 9c88101

Browse files
committed
Merge remote-tracking branch 'origin/main' into zhaez/gen-ai-support
2 parents 93e1c71 + 3431a4e commit 9c88101

File tree

14 files changed

+1011
-3
lines changed

14 files changed

+1011
-3
lines changed

.github/workflows/core_contrib_test_0.yml

+96
Large diffs are not rendered by default.

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/core_contrib_test.yml.j2

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ on:
1212
CONTRIB_REPO_SHA:
1313
required: true
1414
type: string
15+
1516
env:
1617
CORE_REPO_SHA: ${% raw %}{{ inputs.CORE_REPO_SHA }}{% endraw %}
1718
CONTRIB_REPO_SHA: ${% raw %}{{ inputs.CONTRIB_REPO_SHA }}{% endraw %}
@@ -23,6 +24,7 @@ jobs:
2324
{{ job_data.tox_env }}:
2425
name: {{ job_data.ui_name }}
2526
runs-on: ubuntu-latest
27+
timeout-minutes: 30
2628
steps:
2729
- name: Checkout contrib repo @ SHA - ${% raw %}{{ env.CONTRIB_REPO_SHA }}{% endraw %}
2830
uses: actions/checkout@v4

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/lint.yml.j2

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
- 'release/*'
1010
pull_request:
1111

12+
concurrency:
13+
group: ${% raw %}{{ github.workflow }}-${{ github.head_ref || github.run_id }}{% endraw %}
14+
cancel-in-progress: true
15+
1216
env:
1317
CORE_REPO_SHA: main
1418
CONTRIB_REPO_SHA: main
@@ -20,6 +24,7 @@ jobs:
2024
{{ job_data.name }}:
2125
name: {{ job_data.ui_name }}
2226
runs-on: ubuntu-latest
27+
timeout-minutes: 30
2328
steps:
2429
- name: Checkout repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
2530
uses: actions/checkout@v4

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/misc.yml.j2

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
- 'release/*'
1010
pull_request:
1111

12+
concurrency:
13+
group: ${% raw %}{{ github.workflow }}-${{ github.head_ref || github.run_id }}{% endraw %}
14+
cancel-in-progress: true
15+
1216
env:
1317
CORE_REPO_SHA: main
1418
CONTRIB_REPO_SHA: main
@@ -20,6 +24,7 @@ jobs:
2024
{{ job_data }}:
2125
name: {{ job_data }}
2226
runs-on: ubuntu-latest
27+
timeout-minutes: 30
2328
{%- if job_data == "generate-workflows" %}
2429
if: |
2530
!contains(github.event.pull_request.labels.*.name, 'Skip generate-workflows')

.github/workflows/generate_workflows_lib/src/generate_workflows_lib/test.yml.j2

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@ on:
99
- 'release/*'
1010
pull_request:
1111

12+
concurrency:
13+
group: ${% raw %}{{ github.workflow }}-${{ github.head_ref || github.run_id }}{% endraw %}
14+
cancel-in-progress: true
15+
1216
env:
1317
CORE_REPO_SHA: main
1418
CONTRIB_REPO_SHA: main
@@ -20,6 +24,7 @@ jobs:
2024
{{ job_data.name }}:
2125
name: {{ job_data.ui_name }}
2226
runs-on: {{ job_data.os }}
27+
timeout-minutes: 30
2328
steps:
2429
- name: Checkout repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
2530
uses: actions/checkout@v4

0 commit comments

Comments
 (0)