Skip to content

feat: new slash command to make go code improvements based on gopls and go vet - #222

Closed
liouk wants to merge 1 commit into
openshift-eng:mainfrom
liouk:claude-command-go-improve
Closed

liouk wants to merge 1 commit into
openshift-eng:mainfrom
liouk:claude-command-go-improve

Conversation

@liouk

@liouk liouk commented Dec 12, 2025

Copy link
Copy Markdown

This PR introduces a Claude Code command that analyzes a Go codebase with gopls and go vet, and suggests and performs code improvements based on their output. These are tools that are often overlooked, or that produce diagnostics and suggestions that only become apparent when one opens a specific file in their editor; therefore, easy to miss.

The goal is to keep a Go codebase up to date and clean for things like API and standard library modernizations, code cleanup and reuse minimization, etc.

Summary by CodeRabbit

  • New Features

    • Added /golang:improve command to analyze and automatically fix Go code quality issues (uses gopls and go vet).
  • Documentation

    • Added detailed usage, examples, and safety guidelines for the new /golang:improve workflow.
    • Expanded README to reflect broader code quality, linting, and modernization capabilities; notes optional prerequisite tools.
  • Chores

    • Golang plugin version bumped to 0.2.0.

@openshift-ci openshift-ci Bot added the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Dec 12, 2025
@coderabbitai

coderabbitai Bot commented Dec 12, 2025

Copy link
Copy Markdown
Contributor

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 0e1188a2-4245-45b8-aaab-c10a0d047854

📥 Commits

Reviewing files that changed from the base of the PR and between b8bc32a and fc02abc.

📒 Files selected for processing (6)
  • .claude-plugin/marketplace.json
  • PLUGINS.md
  • docs/data.json
  • plugins/golang/.claude-plugin/plugin.json
  • plugins/golang/README.md
  • plugins/golang/commands/improve.md
🚧 Files skipped from review as they are similar to previous changes (2)
  • plugins/golang/.claude-plugin/plugin.json
  • .claude-plugin/marketplace.json

Walkthrough

Adds a new /golang:improve command to the golang plugin for automated Go code quality analysis and fixes (using gopls and go vet). Bumps the golang plugin version from 0.1.0 to 0.2.0 and updates corresponding documentation and registry manifests.

Changes

Cohort / File(s) Summary
Registry & Manifests
.claude-plugin/marketplace.json, plugins/golang/.claude-plugin/plugin.json, docs/data.json, PLUGINS.md
Plugin version updated from 0.1.0 to 0.2.0. New command improve registered in plugin manifests and docs/data.json; PLUGINS.md documents /golang:improve [path].
Plugin Docs & Command Spec
plugins/golang/README.md, plugins/golang/commands/improve.md
Expanded README and added improve.md detailing /golang:improve behavior: analysis with gopls and go vet, severity categorization, automated fixes, verification (build/tests), usage, prerequisites, and output/report format.

Sequence Diagram(s)

sequenceDiagram
    autonumber
    participant User as User
    participant Plugin as Golang Plugin
    participant Gopls as gopls (analysis)
    participant Govet as go vet (analysis)
    participant FS as Filesystem/ VCS
    participant CI as Build/Test (verify)

    User->>Plugin: /golang:improve [path]
    Plugin->>FS: read repository files
    Plugin->>Gopls: run analysis on [path]
    Plugin->>Govet: run go vet on [path]
    Gopls-->>Plugin: diagnostics & suggested fixes
    Govet-->>Plugin: diagnostics
    Plugin->>Plugin: categorize severity & prepare fixes
    Plugin->>FS: apply automated fixes (patches)
    Plugin->>CI: run build & tests
    CI-->>Plugin: verification results
    Plugin-->>User: structured report (diagnostics, applied fixes, verification)
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~20 minutes

🚥 Pre-merge checks | ✅ 7 | ❌ 1

❌ Failed checks (1 inconclusive)

Check name Status Explanation Resolution
Ai-Helpers Overlap Detection ❓ Inconclusive Analysis of existing plugins//commands/.md files was not provided; cannot verify for overlap with /golang:improve command. Provide a list of existing command files with their names and descriptions to assess similarity with improve functionality.
✅ Passed checks (7 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately summarizes the main change: introducing a new slash command for Go code improvements using gopls and go vet, which aligns with the PR's primary objective and all modified files.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
No Real People Names In Style References ✅ Passed Comprehensive examination of all modified files found no references to real people by name in plugin commands, documentation, style references, or example prompts.
No Assumed Git Remote Names ✅ Passed No hardcoded git remote names like 'origin' or 'upstream' found in any modified files.
Git Push Safety Rules ✅ Passed The pull request introduces a new /golang:improve command for the golang plugin that performs code analysis and fixes using gopls and go vet. After thoroughly examining all modified files, none of them contain any git push, git commit, or other git operations that would violate the safety rules.
No Untrusted Mcp Servers ✅ Passed The PR adds a new /golang:improve command with documentation and configuration updates, with no MCP server installations, npm packages, or external service dependencies introduced.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Post copyable unit tests in a comment
📝 Coding Plan
  • Generate coding plan for human review comments

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

Tip

CodeRabbit can approve the review once all CodeRabbit's comments are resolved.

Enable the reviews.request_changes_workflow setting to automatically approve the review once all CodeRabbit's comments are resolved.

@openshift-ci openshift-ci Bot added the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label Dec 12, 2025
@openshift-ci

openshift-ci Bot commented Dec 12, 2025

Copy link
Copy Markdown
Contributor

Hi @liouk. Thanks for your PR.

I'm waiting for a github.com member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

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.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Nitpick comments (3)
plugins/go/README.md (1)

12-14: Add language specification to all code blocks.

Markdown code blocks should specify a language for proper syntax highlighting and linting compliance (MD040). Add bash to the bash command blocks.

-```
+```bash
 /plugin install go@ai-helpers
-```
+```
-```
+```bash
 # Analyze and fix the entire repository
 /go:improve
 
 # Analyze a specific package
 /go:improve pkg/operator
 
 # Analyze all packages under a path
 /go:improve ./pkg/controllers/...
-```
+```

Also applies to: 21-23, 32-41

plugins/go/commands/improve.md (2)

12-14: Add language specification to all code blocks.

Multiple code blocks throughout this file are missing language specifications, which violates markdown linting rules (MD040) and affects documentation rendering. Add appropriate language identifiers (bash for commands, text or plaintext for example output, etc.).

For command blocks (lines 12-14, 49-51, 59-61, 122-124, 132-134, 145-148), add bash:

-```
+```bash
 /go:improve [path]
-```
+```

For output/example blocks (lines 162-178, 181-200, 230-275), add text:

-```
+```text
 ## Analysis Results
 
 Found N issues across M files:
-```
+```
-```
+```text
 ## Summary
 
 - Fixed: X/Y issues
-```
+```

Also applies to: 49-51, 59-61, 122-124, 132-134, 145-148, 162-178, 181-200, 206-208, 214-216, 222-224, 230-275


18-18: Clarify tool invocation details.

Line 18 mentions analyzing "code quality issues that are typically only visible in an editor," but the command description could be clearer about how this addresses issues that gopls check and go vet surface when run from the command line. The statement might benefit from clarifying that these tools provide comprehensive diagnostics beyond interactive editor hints.

📜 Review details

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Cache: Disabled due to data retention organization setting

Knowledge base: Disabled due to data retention organization setting

📥 Commits

Reviewing files that changed from the base of the PR and between f0e0326 and 0823262.

📒 Files selected for processing (3)
  • plugins/go/.claude-plugin/plugin.json (1 hunks)
  • plugins/go/README.md (1 hunks)
  • plugins/go/commands/improve.md (1 hunks)
🧰 Additional context used
🪛 LanguageTool
plugins/go/README.md

[style] ~3-~3: Consider using a different verb for a more formal wording.
Context: ... tasks, helping developers identify and fix issues using static analysis tools. ##...

(FIX_RESOLVE)

🪛 markdownlint-cli2 (0.18.1)
plugins/go/commands/improve.md

12-12: Fenced code blocks should have a language specified

(MD040, fenced-code-language)


162-162: Fenced code blocks should have a language specified

(MD040, fenced-code-language)


181-181: Fenced code blocks should have a language specified

(MD040, fenced-code-language)


206-206: Fenced code blocks should have a language specified

(MD040, fenced-code-language)


214-214: Fenced code blocks should have a language specified

(MD040, fenced-code-language)


222-222: Fenced code blocks should have a language specified

(MD040, fenced-code-language)


230-230: Fenced code blocks should have a language specified

(MD040, fenced-code-language)

🔇 Additional comments (1)
plugins/go/.claude-plugin/plugin.json (1)

1-8: LGTM!

The plugin descriptor is well-formed and appropriately structured for the new Go plugin.

Comment thread plugins/go/README.md Outdated
@liouk
liouk marked this pull request as ready for review December 16, 2025 08:55
@openshift-ci openshift-ci Bot removed the do-not-merge/work-in-progress Indicates that a PR should not merge because it is a work in progress. label Dec 16, 2025
@openshift-ci
openshift-ci Bot requested review from dgoodwin and stleerh December 16, 2025 08:55
@liouk
liouk force-pushed the claude-command-go-improve branch from 0823262 to 8fade31 Compare December 16, 2025 12:57

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 0

🧹 Nitpick comments (2)
PLUGINS.md (1)

134-142: Consider clarifying the plugin description.

The description mentions "code generation," but based on the /go:improve command and other documentation, the plugin focuses on code quality analysis and fixing using gopls and go vet, not code generation. Consider updating the description to better reflect this purpose.

Apply this diff:

-A claude plugin for various Go related tasks and code generation
+A plugin for Go code quality and modernization tasks using static analysis tools

This would align better with the command's actual functionality and match the description in docs/data.json (line 1000).

plugins/go/commands/improve.md (1)

12-14: Consider adding language specifiers to code blocks.

Several fenced code blocks are missing language specifiers, which can improve syntax highlighting and readability. While this is a minor style issue, adding them would align with markdown best practices.

Suggested language specifiers:

  • Line 12 (synopsis): text or bash
  • Line 162 (analysis report): text or markdown
  • Line 181 (fix summary): text or markdown
  • Lines 206, 214, 222 (example commands): bash
  • Line 230 (sample output): text or markdown

Example for line 12:

-```
+```bash
 /go:improve [path]


Also applies to: 162-200, 206-226, 230-275

</blockquote></details>

</blockquote></details>

<details>
<summary>📜 Review details</summary>

**Configuration used**: Path: .coderabbit.yaml

**Review profile**: CHILL

**Plan**: Pro

**Cache: Disabled due to data retention organization setting**

**Knowledge base: Disabled due to data retention organization setting**

<details>
<summary>📥 Commits</summary>

Reviewing files that changed from the base of the PR and between 08232624e23e626978a01b5c44f8eb9f998f9fd3 and 8fade3132c0fd4297757674310567ee1bec41716.

</details>

<details>
<summary>📒 Files selected for processing (6)</summary>

* `.claude-plugin/marketplace.json` (1 hunks)
* `PLUGINS.md` (2 hunks)
* `docs/data.json` (1 hunks)
* `plugins/go/.claude-plugin/plugin.json` (1 hunks)
* `plugins/go/README.md` (1 hunks)
* `plugins/go/commands/improve.md` (1 hunks)

</details>

<details>
<summary>✅ Files skipped from review due to trivial changes (1)</summary>

* .claude-plugin/marketplace.json

</details>

<details>
<summary>🚧 Files skipped from review as they are similar to previous changes (1)</summary>

* plugins/go/.claude-plugin/plugin.json

</details>

<details>
<summary>🧰 Additional context used</summary>

<details>
<summary>🪛 LanguageTool</summary>

<details>
<summary>PLUGINS.md</summary>

[grammar] ~136-~136: Use a hyphen to join words.
Context: ...o Plugin  A claude plugin for various Go related tasks and code generation  **Com...

(QB_NEW_EN_HYPHEN)

</details>
<details>
<summary>plugins/go/README.md</summary>

[style] ~3-~3: Consider using a different verb for a more formal wording.
Context: ... tasks, helping developers identify and fix issues using static analysis tools.  ##...

(FIX_RESOLVE)

</details>

</details>
<details>
<summary>🪛 markdownlint-cli2 (0.18.1)</summary>

<details>
<summary>plugins/go/commands/improve.md</summary>

12-12: Fenced code blocks should have a language specified

(MD040, fenced-code-language)

---

162-162: Fenced code blocks should have a language specified

(MD040, fenced-code-language)

---

181-181: Fenced code blocks should have a language specified

(MD040, fenced-code-language)

---

206-206: Fenced code blocks should have a language specified

(MD040, fenced-code-language)

---

214-214: Fenced code blocks should have a language specified

(MD040, fenced-code-language)

---

222-222: Fenced code blocks should have a language specified

(MD040, fenced-code-language)

---

230-230: Fenced code blocks should have a language specified

(MD040, fenced-code-language)

</details>

</details>

</details>

<details>
<summary>🔇 Additional comments (14)</summary><blockquote>

<details>
<summary>PLUGINS.md (1)</summary><blockquote>

`14-14`: **LGTM!**

The TOC entry is correctly positioned alphabetically and follows the established format.

</blockquote></details>
<details>
<summary>plugins/go/README.md (4)</summary><blockquote>

`1-4`: **LGTM!**

Clear and accurate description of the plugin's purpose.

---

`5-18`: **LGTM!**

The command documentation is clear and the link to `commands/improve.md` is correct. The previously flagged issue with the documentation link has been resolved.

---

`20-24`: **LGTM!**

Installation command follows the standard plugin installation pattern.

---

`26-42`: **No changes required** — the gopls installation command is correct and current.

The prerequisite instruction `go install golang.org/x/tools/gopls@latest` aligns with official Go documentation and is the recommended installation method.

</blockquote></details>
<details>
<summary>docs/data.json (1)</summary><blockquote>

`990-1006`: **LGTM!**

The Go plugin entry is well-structured and consistent with other plugin entries in the registry. The metadata accurately reflects the plugin's functionality and command signature.

</blockquote></details>
<details>
<summary>plugins/go/commands/improve.md (8)</summary><blockquote>

`1-26`: **LGTM!**

The command description and issue categories are clear and well-organized.

---

`27-33`: **LGTM!**

Clear documentation of the path argument with important note about vendor directory exclusion.

---

`63-103`: **LGTM!**

Excellent categorization of issues by severity with clear examples and a well-defined presentation format.

---

`127-156`: **LGTM!**

Comprehensive verification steps including rebuild, tests, and re-analysis. The verification workflow is thorough and will help ensure fixes don't break functionality.

---

`157-276`: **LGTM!**

Excellent examples with detailed output format specification. The sample output (lines 228-275) provides a clear illustration of what users should expect.

---

`277-326`: **LGTM!**

Comprehensive guidelines covering safety, efficiency, and special cases. The safety warnings (especially about vendor/ directory) are important and well-placed.

---

`104-126`: **Correct the gopls command syntax.**

Line 123 references `gopls check -fix` but gopls does not support a `-fix` flag on the check subcommand. gopls provides separate `check` and `fix` subcommands. The command should be `gopls fix` to apply fixes. Verify the correct usage with `gopls help fix` or consult the gopls documentation for the proper syntax to apply fixes in batch operations.


> Likely an incorrect or invalid review comment.

---

`44-62`: The implementation is correct. gopls check operates on individual files, not packages or directories, so the `find` command with `-exec` is the appropriate approach for this use case.

</blockquote></details>

</blockquote></details>

</details>

<!-- This is an auto-generated comment by CodeRabbit for review status -->

@swghosh

swghosh commented Dec 18, 2025

Copy link
Copy Markdown

/ok-to-test

@openshift-ci openshift-ci Bot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Dec 18, 2025
@zaneb

zaneb commented Feb 18, 2026

Copy link
Copy Markdown
Contributor

/approve

@openshift-ci

openshift-ci Bot commented Feb 18, 2026

Copy link
Copy Markdown
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: liouk, zaneb

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:

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

@openshift-ci openshift-ci Bot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Feb 18, 2026
@openshift-merge-robot openshift-merge-robot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Feb 18, 2026
@liouk
liouk force-pushed the claude-command-go-improve branch from 8fade31 to b8bc32a Compare March 16, 2026 14:32
@openshift-merge-robot openshift-merge-robot removed the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label Mar 16, 2026

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 2

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

Inline comments:
In `@PLUGINS.md`:
- Around line 155-159: PLUGINS.md is out of sync with plugin metadata causing CI
failure; regenerate the file by running the repository update step (run `make
update`), verify the regenerated PLUGINS.md reflects the current plugin
metadata, and commit the updated PLUGINS.md to the branch so the pipeline can
pass.

In `@plugins/golang/commands/improve.md`:
- Around line 121-125: Replace the invalid gopls invocation "gopls check -fix"
with the correct action-based command so fixes are applied automatically: locate
the shell snippet using the find invocation that currently execs "gopls check
-fix" and change it to use "gopls codeaction -exec" (so the find ... -exec line
invokes gopls codeaction -exec for each .go file rather than the unsupported
check -fix).

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: ad1a50fe-d02d-4069-b420-82516efcfbfb

📥 Commits

Reviewing files that changed from the base of the PR and between 8fade31 and b8bc32a.

📒 Files selected for processing (6)
  • .claude-plugin/marketplace.json
  • PLUGINS.md
  • docs/data.json
  • plugins/golang/.claude-plugin/plugin.json
  • plugins/golang/README.md
  • plugins/golang/commands/improve.md
🚧 Files skipped from review as they are similar to previous changes (1)
  • docs/data.json

Comment thread PLUGINS.md Outdated
Comment on lines 155 to 159
Go code quality analysis, linting, and modernization

**Commands:**
- **`/golang:improve` `[path]`** - Analyze and fix Go code quality issues using gopls and go vet
- **`/golang:lint-fix`** - Run golangci-lint tool and fix all reported issues

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

⚠️ Potential issue | 🟠 Major

Pipeline failure: PLUGINS.md out of sync with plugin metadata.

The CI is failing because PLUGINS.md appears to be manually edited rather than auto-generated. The error indicates the file needs to be regenerated using make update to ensure consistency with plugin metadata.

Run make update and commit the regenerated file to resolve the pipeline failure.

🧰 Tools
🪛 LanguageTool

[style] ~159-~159: Consider using a different verb for a more formal wording.
Context: ...int-fix`** - Run golangci-lint tool and fix all reported issues See [plugins/golan...

(FIX_RESOLVE)

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

In `@PLUGINS.md` around lines 155 - 159, PLUGINS.md is out of sync with plugin
metadata causing CI failure; regenerate the file by running the repository
update step (run `make update`), verify the regenerated PLUGINS.md reflects the
current plugin metadata, and commit the updated PLUGINS.md to the branch so the
pipeline can pass.

Comment on lines +121 to +125
4. **Use gopls automatic fixes** when available:
```bash
find [path] -name "*.go" -not -path "./vendor/*" -exec gopls check -fix {} \;
```
- If automatic fixes unavailable, apply manually based on diagnostics

Copy link
Copy Markdown
Contributor

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
# Check gopls check available flags
gopls help check 2>/dev/null || echo "gopls not available in sandbox"

Repository: openshift-eng/ai-helpers

Length of output: 98


🌐 Web query:

gopls check command -fix flag documentation

💡 Result:

gopls check does not have a -fix flag. The CLI check subcommand is for publishing/reporting diagnostics (e.g. gopls check file.go). [1]

To apply fixes, use code actions, e.g. gopls codeaction -exec ... (the gopls docs show -exec, -kind, and -diff usage). [2]

If you found references to gopls fix: that subcommand was made obsolete (“No longer supported; use gopls codeaction instead.”). [3]

Sources: [1] (tip.golang.org) [2] (tip.golang.org) [3] (go.googlesource.com)

Citations:


Replace gopls check -fix with gopls codeaction -exec.

The gopls check command does not support a -fix flag. The check subcommand only reports diagnostics; to apply fixes, use gopls codeaction -exec instead. The current snippet will always fall back to manual edits, defeating the automation intent.

Suggested fix

Replace:

find [path] -name "*.go" -not -path "./vendor/*" -exec gopls check -fix {} \;

With:

find [path] -name "*.go" -not -path "./vendor/*" -exec gopls codeaction -exec {} \;
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@plugins/golang/commands/improve.md` around lines 121 - 125, Replace the
invalid gopls invocation "gopls check -fix" with the correct action-based
command so fixes are applied automatically: locate the shell snippet using the
find invocation that currently execs "gopls check -fix" and change it to use
"gopls codeaction -exec" (so the find ... -exec line invokes gopls codeaction
-exec for each .go file rather than the unsupported check -fix).

@liouk
liouk force-pushed the claude-command-go-improve branch from b8bc32a to fc02abc Compare March 16, 2026 15:16
@liouk

liouk commented Mar 17, 2026

Copy link
Copy Markdown
Author

/retest-required

1 similar comment
@liouk

liouk commented Apr 17, 2026

Copy link
Copy Markdown
Author

/retest-required

@openshift-ci

openshift-ci Bot commented May 9, 2026

Copy link
Copy Markdown
Contributor

PR needs rebase.

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.

@openshift-ci openshift-ci Bot added the needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. label May 9, 2026
@openshift-ci

openshift-ci Bot commented Jun 9, 2026

Copy link
Copy Markdown
Contributor

Stale PRs are closed after 21d of inactivity.

If this PR is still relevant, comment to refresh it or remove the stale label.
Mark the PR as fresh by commenting /remove-lifecycle stale.

If this PR is safe to close now please do so with /close.

/lifecycle stale

@openshift-ci openshift-ci Bot added the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Jun 9, 2026
@openshift-ci

openshift-ci Bot commented Jun 23, 2026

Copy link
Copy Markdown
Contributor

Stale PRs rot after 14d of inactivity.

Mark the PR as fresh by commenting /remove-lifecycle rotten.
Rotten PRs close after an additional 7d of inactivity.

If this PR is safe to close now please do so with /close.

/lifecycle rotten
/remove-lifecycle stale

@openshift-ci openshift-ci Bot added lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. and removed lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. labels Jun 23, 2026
@openshift-ci

openshift-ci Bot commented Jun 30, 2026

Copy link
Copy Markdown
Contributor

Rotten PRs close after 7d of inactivity.

Reopen the PR by commenting /reopen.
Mark the PR as fresh by commenting /remove-lifecycle rotten.

/close

@openshift-ci openshift-ci Bot closed this Jun 30, 2026
@openshift-ci

openshift-ci Bot commented Jun 30, 2026

Copy link
Copy Markdown
Contributor

@openshift-ci[bot]: Closed this PR.

Details

In response to this:

Rotten PRs close after 7d of inactivity.

Reopen the PR by commenting /reopen.
Mark the PR as fresh by commenting /remove-lifecycle rotten.

/close

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.

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. lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. needs-rebase Indicates a PR cannot be merged because it has merge conflicts with HEAD. ok-to-test Indicates a non-member PR verified by an org member that is safe to test.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants