Skip to content

NO-JIRA: Update openshift-test-private commit to recent#6399

Open
kasturinarra wants to merge 1 commit intoopenshift:mainfrom
kasturinarra:local-4.22
Open

NO-JIRA: Update openshift-test-private commit to recent#6399
kasturinarra wants to merge 1 commit intoopenshift:mainfrom
kasturinarra:local-4.22

Conversation

@kasturinarra
Copy link
Copy Markdown
Contributor

@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Mar 25, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Repository YAML (base), Organization UI (inherited)

Review profile: CHILL

Plan: Pro

Run ID: 9ee3e9c1-1c28-4ce2-8976-adeecb59d58b

📥 Commits

Reviewing files that changed from the base of the PR and between d5961ff and ca710ea.

📒 Files selected for processing (2)
  • test/assets/common_versions.sh.template
  • test/bin/common_versions.sh
✅ Files skipped from review due to trivial changes (2)
  • test/assets/common_versions.sh.template
  • test/bin/common_versions.sh

Walkthrough

Updated the pinned OPENSHIFT_TESTS_PRIVATE_REPO_COMMIT value in two version configuration scripts from commit ed0dc50bfaf9b301d175b7035b8c0192ab113db9 to e56c2b5bd369e96e59a01b0fffbac729d469d7ac. No other configuration changes.

Changes

Cohort / File(s) Summary
Version configuration updates
test/assets/common_versions.sh.template, test/bin/common_versions.sh
Changed OPENSHIFT_TESTS_PRIVATE_REPO_COMMIT from ed0dc50bfaf9b301d175b7035b8c0192ab113db9e56c2b5bd369e96e59a01b0fffbac729d469d7ac. No other edits.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~3 minutes

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Warning

Review ran into problems

🔥 Problems

Git: Failed to clone repository. Please run the @coderabbitai full review command to re-trigger a full review. If the issue persists, set path_filters to include or exclude specific files.


Comment @coderabbitai help to get the list of available commands and usage tips.

@openshift-ci openshift-ci bot requested review from eslutsky and pmtk March 25, 2026 11:28
@openshift-ci openshift-ci bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Mar 25, 2026
Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@test/assets/common_versions.sh.template`:
- Line 173: This value in test/assets/common_versions.sh.template
(OPENSHIFT_TESTS_PRIVATE_REPO_COMMIT) was manually edited; instead run the
generator generate_common_versions.py to update the file and avoid manual
changes, and before committing, verify that the commit SHA
9fd97ee76e1bd3bac0c48e430202686f8c052291 actually exists on the
openshift-tests-private repository's release-4.22 branch; revert the manual
edit, run generate_common_versions.py, and only commit the generated change
after confirming the SHA is present on release-4.22.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository YAML (base), Organization UI (inherited)

Review profile: CHILL

Plan: Pro

Run ID: 04de2466-94d8-4219-bf5c-8af0da882156

📥 Commits

Reviewing files that changed from the base of the PR and between 8882ae3 and d5961ff.

📒 Files selected for processing (2)
  • test/assets/common_versions.sh.template
  • test/bin/common_versions.sh

# Branch and commit for the openshift-tests-private repository
OPENSHIFT_TESTS_PRIVATE_REPO_BRANCH="release-4.${{MINOR_VERSION}}"
OPENSHIFT_TESTS_PRIVATE_REPO_COMMIT="ed0dc50bfaf9b301d175b7035b8c0192ab113db9"
OPENSHIFT_TESTS_PRIVATE_REPO_COMMIT="9fd97ee76e1bd3bac0c48e430202686f8c052291"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify the commit exists in openshift-tests-private repo

# Check if the commit exists and is on the correct branch
gh api repos/openshift/openshift-tests-private/commits/9fd97ee76e1bd3bac0c48e430202686f8c052291 \
  --jq '.sha, .commit.message' 2>&1

# Check if commit is reachable from release-4.22 branch
gh api repos/openshift/openshift-tests-private/compare/release-4.22...9fd97ee76e1bd3bac0c48e430202686f8c052291 \
  --jq '.status' 2>&1

Repository: openshift/microshift

Length of output: 349


🏁 Script executed:

# Find the generate_common_versions.py file
fd -t f "generate_common_versions.py"

Repository: openshift/microshift

Length of output: 108


🏁 Script executed:

# Examine the template file to confirm auto-generation marker
head -n 10 test/assets/common_versions.sh.template

Repository: openshift/microshift

Length of output: 318


🏁 Script executed:

# Check the context around line 173
sed -n '170,176p' test/assets/common_versions.sh.template

Repository: openshift/microshift

Length of output: 359


Use the generation script instead of manual edits.

This file is auto-generated by generate_common_versions.py (see lines 4-5) and should not be edited manually. Run the generation script to update this value, or the manual change will be lost when the script is re-run.

The commit 9fd97ee76e1bd3bac0c48e430202686f8c052291 must also be verified to exist on the release-4.22 branch in the openshift-tests-private repository.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@test/assets/common_versions.sh.template` at line 173, This value in
test/assets/common_versions.sh.template (OPENSHIFT_TESTS_PRIVATE_REPO_COMMIT)
was manually edited; instead run the generator generate_common_versions.py to
update the file and avoid manual changes, and before committing, verify that the
commit SHA 9fd97ee76e1bd3bac0c48e430202686f8c052291 actually exists on the
openshift-tests-private repository's release-4.22 branch; revert the manual
edit, run generate_common_versions.py, and only commit the generated change
after confirming the SHA is present on release-4.22.

@kasturinarra kasturinarra changed the title Update openshift-test-private commit to recent No-Jira: Update openshift-test-private commit to recent Mar 25, 2026
@openshift-ci-robot openshift-ci-robot added the jira/valid-reference Indicates that this PR references a valid Jira ticket of any type. label Mar 25, 2026
@openshift-ci-robot
Copy link
Copy Markdown

@kasturinarra: This pull request explicitly references no jira issue.

Details

In response to this:

Commit from openshift-test repo: https://github.com/openshift/openshift-tests-private/pull/29590/commits

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository.

@kasturinarra kasturinarra changed the title No-Jira: Update openshift-test-private commit to recent NO-JIRA: Update openshift-test-private commit to recent Mar 25, 2026
@ggiguash
Copy link
Copy Markdown
Contributor

/lgtm

@openshift-ci openshift-ci bot added the lgtm Indicates that a PR is ready to be merged. label Mar 25, 2026
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Mar 25, 2026

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: ggiguash, kasturinarra

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Details Needs approval from an approver in each of these files:
  • OWNERS [ggiguash,kasturinarra]

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@kasturinarra
Copy link
Copy Markdown
Contributor Author

/retest

1 similar comment
@kasturinarra
Copy link
Copy Markdown
Contributor Author

/retest

@kasturinarra
Copy link
Copy Markdown
Contributor Author

/test e2e-aws-tests-release

@openshift-ci openshift-ci bot removed the lgtm Indicates that a PR is ready to be merged. label Mar 25, 2026
@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Mar 25, 2026

New changes are detected. LGTM label has been removed.

@kasturinarra
Copy link
Copy Markdown
Contributor Author

/test e2e-aws-tests-release

1 similar comment
@kasturinarra
Copy link
Copy Markdown
Contributor Author

/test e2e-aws-tests-release

@openshift-ci
Copy link
Copy Markdown
Contributor

openshift-ci bot commented Mar 26, 2026

@kasturinarra: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/prow/e2e-aws-tests-release ca710ea link true /test e2e-aws-tests-release
ci/prow/e2e-aws-tests-bootc-arm-el10 ca710ea link true /test e2e-aws-tests-bootc-arm-el10
ci/prow/e2e-aws-tests-bootc-el10 ca710ea link true /test e2e-aws-tests-bootc-el10

Full PR test history. Your PR dashboard.

Details

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. jira/valid-reference Indicates that this PR references a valid Jira ticket of any type.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants