From 0c852b68f851c2182f736b5deb69853bfb144e9a Mon Sep 17 00:00:00 2001 From: Tom Pantelis Date: Mon, 16 Feb 2026 12:44:04 -0500 Subject: [PATCH 1/2] Remove CodeRabbit review workflow Signed-off-by: Tom Pantelis --- .github/workflows/coderabbit-review.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/coderabbit-review.yml diff --git a/.github/workflows/coderabbit-review.yml b/.github/workflows/coderabbit-review.yml deleted file mode 100644 index e243c48f..00000000 --- a/.github/workflows/coderabbit-review.yml +++ /dev/null @@ -1,16 +0,0 @@ ---- -name: Trigger CodeRabbit for Bot PRs -on: - pull_request_target: - types: [opened] - -permissions: - contents: write - pull-requests: write - -jobs: - trigger-review: - uses: submariner-io/submariner-bot/.github/workflows/coderabbit-trigger.yml@devel - with: - pr_number: ${{ github.event.pull_request.number }} - secrets: inherit From edffdc5c9b69e3050bb721b7e651792582290043 Mon Sep 17 00:00:00 2001 From: Tom Pantelis Date: Tue, 17 Feb 2026 21:31:33 -0500 Subject: [PATCH 2/2] Fix stale bot cache issue by adding actions:write permission The stale workflow was experiencing a caching issue where issues were being perpetually skipped with the message "skipped due being processed during the previous run". This was caused by the workflow lacking the actions:write permission needed to delete/update the cache between runs. Without this permission, the stale action creates a cache of processed issues but cannot delete or update it in subsequent runs, resulting in a 403 error and issues getting stuck in a "perpetually processing" state. This fix adds the actions:write permission as recommended in: https://github.com/actions/stale/issues/1131 Signed-off-by: Tom Pantelis --- .github/workflows/stale.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 3cf732af..f6b8193b 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -15,6 +15,7 @@ jobs: permissions: issues: write pull-requests: write + actions: write steps: - uses: actions/stale@997185467fa4f803885201cee163a9f38240193d with: