Skip to content

Commit f4be78b

Browse files
Upgrade CI (30 Sep 2025 11:18:22)
1 parent f44dab0 commit f4be78b

File tree

8 files changed

+15
-12
lines changed

8 files changed

+15
-12
lines changed

.github/workflows/command_merge.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ jobs:
4646
(!contains(fromJSON(steps.labels.outputs.result).*.name, 'authorized-changes')) &&
4747
(contains(fromJSON(steps.labels.outputs.result).*.name, 'installation-validated')) &&
4848
(contains(fromJSON(steps.labels.outputs.result).*.name, 'package-validated')) &&
49-
(!contains(fromJSON(steps.labels.outputs.result).*.name, 'new-operator')) &&
5049
(!contains(fromJSON(steps.labels.outputs.result).*.name, 'do-not-merge/work-in-progress')) &&
5150
(!contains(fromJSON(steps.labels.outputs.result).*.name, 'do-not-merge/hold'))
5251
with:
@@ -91,7 +90,6 @@ jobs:
9190
body: 'DCO is missing. Please signoff your commits !!!'
9291
})
9392
94-
9593
- name: automerge
9694
if: steps.command.outputs.command-name == 'merge' && steps.command.outputs.command-arguments == 'possible'
9795
uses: "pascalgn/[email protected]"

.github/workflows/operator_ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ jobs:
288288
issue_number: context.issue.number,
289289
owner: context.repo.owner,
290290
repo: context.repo.repo,
291-
labels: [ 'new-operator' ]
291+
labels: [ 'new-operator', 'authorized-changes' ]
292292
})
293293
- name: Verify operator modifications
294294
id: op-verify-modifications

.github/workflows/operator_convert.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ env:
3333

3434
jobs:
3535
convert:
36-
runs-on: ubuntu-latest
36+
runs-on: ubuntu-22.04
3737
steps:
3838
- uses: actions/checkout@v3
3939
with:

.github/workflows/operator_release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
needs: [pr-check, remove-k8s ]
192192

193193
if: needs.pr-check.outputs.opp_release_ready == '1' && (needs.pr-check.outputs.opp_op_delete == '0' || needs.pr-check.outputs.opp_is_new_operatror == '1' || needs.pr-check.outputs.opp_recreate == '1' )
194-
runs-on: ubuntu-latest
194+
runs-on: ubuntu-22.04
195195
steps:
196196
- name: List of missing operators
197197
id: operators
@@ -357,7 +357,7 @@ jobs:
357357
needs: [ pr-check, operators-k8s, bundles-k8s, release-k8s]
358358
if: needs.pr-check.outputs.opp_release_ready == '1' && needs.operators-k8s.outputs.opp_uncomplete_operators != ''
359359

360-
runs-on: ubuntu-latest
360+
runs-on: ubuntu-22.04
361361
strategy:
362362
matrix:
363363
index-tag: ['latest']

.github/workflows/operator_release_manual.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ jobs:
194194
needs: [pr-check, remove-k8s ]
195195

196196
if: needs.pr-check.outputs.opp_release_ready == '1' && (needs.pr-check.outputs.opp_op_delete == '0' || needs.pr-check.outputs.opp_is_new_operatror == '1' || needs.pr-check.outputs.opp_recreate == '1' )
197-
runs-on: ubuntu-latest
197+
runs-on: ubuntu-22.04
198198
steps:
199199
- name: List of missing operators
200200
id: operators
@@ -366,7 +366,7 @@ jobs:
366366
needs: [ pr-check, operators-k8s, bundles-k8s, release-k8s]
367367
if: needs.pr-check.outputs.opp_release_ready == '1' && needs.operators-k8s.outputs.opp_uncomplete_operators != ''
368368

369-
runs-on: ubuntu-latest
369+
runs-on: ubuntu-22.04
370370
strategy:
371371
matrix:
372372

.github/workflows/operator_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
pr-check:
5050
if: (!contains(github.event.pull_request.labels.*.name, 'do-not-merge/hold'))
5151
name: "PR-traffic-light"
52-
runs-on: ubuntu-latest
52+
runs-on: ubuntu-22.04
5353
steps:
5454
- name: Set up Python
5555
uses: actions/setup-python@v4

.github/workflows/operator_verify.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ env:
4747
jobs:
4848
index-verify:
4949
name: "Index Verify"
50-
runs-on: ubuntu-latest
50+
runs-on: ubuntu-22.04
5151
steps:
5252
- name: Set up Python
5353
uses: actions/setup-python@v4

.github/workflows/stale_issues.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ jobs:
2020
stale-issue-label: "lifecycle/stale"
2121
stale-issue-message: "This issue is stale because it has been open for 30 days with no activity."
2222
close-issue-message: "This issue was closed because it has been inactive for 30 days since being marked as stale."
23-
days-before-pr-stale: -1
24-
days-before-pr-close: -1
23+
24+
days-before-pr-stale: 21
25+
days-before-pr-close: 7
26+
stale-pr-label: "lifecycle/stale"
27+
stale-pr-message: "This pull request is stale because it has been open for 21 days with no activity."
28+
close-pr-message: "This pull request was closed because it has been inactive for 7 days since being marked as stale."
29+
2530
repo-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)