-
Notifications
You must be signed in to change notification settings - Fork 105
ROSA-745: boilerplate-update and enable MintMaker gomod #555
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -5,12 +5,27 @@ | |
| ], | ||
| "packageRules": [ | ||
| { | ||
| "description": "KFLUXSPRT-8235: Prow/Tide repo — pre-label lgtm/approved; Tide merges after CI (no Renovate/platform automerge)", | ||
| "matchManagers": ["gomod", "tekton"], | ||
| "matchUpdateTypes": ["minor", "patch", "pin", "digest"], | ||
| "description": "KFLUXSPRT-8235: Prow/Tide repo \u2014 pre-label lgtm/approved; Tide merges after CI (no Renovate/platform automerge)", | ||
| "matchManagers": [ | ||
| "gomod", | ||
| "tekton" | ||
| ], | ||
| "matchUpdateTypes": [ | ||
| "minor", | ||
| "patch", | ||
| "pin", | ||
| "digest" | ||
| ], | ||
| "automerge": false, | ||
| "platformAutomerge": false, | ||
| "addLabels": ["lgtm", "approved"] | ||
| "addLabels": [ | ||
| "lgtm", | ||
| "approved" | ||
| ] | ||
| } | ||
| ], | ||
| "enabledManagers": [ | ||
| "tekton", | ||
| "gomod" | ||
|
Comment on lines
+27
to
+29
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Read-only check for potential duplicate gomod automation across Renovate and Dependabot.
set -euo pipefail
echo "== Renovate managers =="
if [ -f .github/renovate.json ]; then
sed -n '1,200p' .github/renovate.json | nl -ba
else
echo ".github/renovate.json not found"
fi
echo
echo "== Dependabot gomod entries (if any) =="
if [ -f .github/dependabot.yml ]; then
nl -ba .github/dependabot.yml | sed -n '1,260p'
echo
rg -n -C3 'package-ecosystem:\s*"gomod"|package-ecosystem:\s*gomod' .github/dependabot.yml || true
else
echo ".github/dependabot.yml not found"
fiRepository: openshift/managed-cluster-validating-webhooks Length of output: 174 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "== Renovate configuration (.github/renovate.json) =="
if [ -f .github/renovate.json ]; then
cat -n .github/renovate.json | head -20
else
echo ".github/renovate.json not found"
fi
echo
echo "== Dependabot configuration (.github/dependabot.yml) =="
if [ -f .github/dependabot.yml ]; then
cat -n .github/dependabot.yml
echo
echo "== Searching for gomod in dependabot.yml =="
rg -n 'gomod' .github/dependabot.yml || echo "No 'gomod' found in dependabot.yml"
else
echo ".github/dependabot.yml not found"
fiRepository: openshift/managed-cluster-validating-webhooks Length of output: 1721 Remove gomod from Renovate's enabledManagers or from Dependabot. The 🤖 Prompt for AI Agents |
||
| ] | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this MCVW really needs this explicitly for
MintMaker gomodto run, instead of relying only on the inherited boilerplaterenovate config?as you mentioned earlier
pagerduty-operatorwas used as a reference case, but I want to understand whether this is a `Renovate/MintMaker merge behavior or a rollout workaround?