Skip to content

Commit c5669f2

Browse files
authored
Merge branch 'main' into sha-automation
2 parents 3f88e1d + 369a9f2 commit c5669f2

File tree

51 files changed

+3500
-117
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+3500
-117
lines changed

.github/workflows/core_contrib_test_0.yml

Lines changed: 96 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 2 additions & 0 deletions
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

Lines changed: 5 additions & 0 deletions
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
# Set the SHA to the branch name if the PR has a label 'prepare-release' or 'backport' otherwise, set it to 'main'
1418
# For PRs you can change the inner fallback ('main')
@@ -28,6 +32,7 @@ jobs:
2832
{{ job_data.name }}:
2933
name: {{ job_data.ui_name }}
3034
runs-on: ubuntu-latest
35+
timeout-minutes: 30
3136
steps:
3237
- name: Checkout repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
3338
uses: actions/checkout@v4

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

Lines changed: 5 additions & 0 deletions
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
# Set the SHA to the branch name if the PR has a label 'prepare-release' or 'backport' otherwise, set it to 'main'
1418
# For PRs you can change the inner fallback ('main')
@@ -28,6 +32,7 @@ jobs:
2832
{{ job_data }}:
2933
name: {{ job_data }}
3034
runs-on: ubuntu-latest
35+
timeout-minutes: 30
3136
{%- if job_data == "generate-workflows" %}
3237
if: |
3338
!contains(github.event.pull_request.labels.*.name, 'Skip generate-workflows')

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

Lines changed: 5 additions & 0 deletions
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
# Set the SHA to the branch name if the PR has a label 'prepare-release' or 'backport' otherwise, set it to 'main'
1418
# For PRs you can change the inner fallback ('main')
@@ -28,6 +32,7 @@ jobs:
2832
{{ job_data.name }}:
2933
name: {{ job_data.ui_name }}
3034
runs-on: {{ job_data.os }}
35+
timeout-minutes: 30
3136
steps:
3237
- name: Checkout repo @ SHA - ${% raw %}{{ github.sha }}{% endraw %}
3338
uses: actions/checkout@v4

0 commit comments

Comments
 (0)