OCM-00000 | ci: Update github.com/nathan-fiscaletti/consolesize-go digest to 3bac975#3247
Conversation
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository: openshift/coderabbit/.coderabbit.yaml Review profile: CHILL Plan: Enterprise Run ID: ⛔ Files ignored due to path filters (5)
📒 Files selected for processing (1)
WalkthroughThis PR updates the ChangesDependency Update
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Suggested labels
Suggested reviewers
🚥 Pre-merge checks | ✅ 11 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (11 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: red-hat-konflux[bot] The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
Hi @red-hat-konflux[bot]. Thanks for your PR. I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with Regular contributors should join the org to skip this step. Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions 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. |
|
/ok-to-test |
|
@olucasfreitas I'll close this PR to force Renovate creating a new one, I dont know why the commitMessagePrefix was ignored here. correction: I cant close the PR, I lost permission here. |
|
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Look for Renovate/MintMaker configuration files
fd -i "renovate" --type f
fd -i "mintmaker" --type f
fd -i ".renovaterc" --type f
# Check common renovate config locations
cat renovate.json 2>/dev/null || echo "No renovate.json found"
cat .renovaterc 2>/dev/null || echo "No .renovaterc found"
cat .renovaterc.json 2>/dev/null || echo "No .renovaterc.json found"
# Check if there's a renovate config in .github
ls .github/ 2>/dev/null
cat .github/renovate.json 2>/dev/null || echo "No .github/renovate.json found"
cat .github/renovate.json5 2>/dev/null || echo "No .github/renovate.json5 found"Length of output: 812 🏁 Script executed: #!/bin/bash
# Check the PR description and details
gh pr view 3247 --repo openshift/rosa --json title,body,labels,author,headRefName
# Search for any dependency update configuration
fd -e json --type f | head -30
fd -e yaml --type f -g "*renovate*"
fd -e yaml --type f -g "*mintmaker*"
# Check if there's anything in the .tekton or konflux directories
ls .tekton/ 2>/dev/null || echo "No .tekton dir"
ls .konflux/ 2>/dev/null || echo "No .konflux dir"
# Look for any config mentioning commitMessagePrefix
rg -r "commitMessagePrefix" . 2>/dev/null || echo "No commitMessagePrefix found"Length of output: 280754
To enforce a specific {
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"commitMessagePrefix": "YOUR-DESIRED-PREFIX | "
}A few additional things to check:
|
|
Tip For best results, initiate chat on the files or code changes. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Look for Renovate configuration files
fd -t f -e json -e yaml -e yml renovate
echo "---"
fd -t f "\.renovaterc"
echo "---"
# Check package.json for renovate config
cat package.json 2>/dev/null | python3 -c "import sys,json; d=json.load(sys.stdin); print(json.dumps(d.get('renovate', {}), indent=2))" 2>/dev/null || echo "No package.json renovate config"
echo "---"
# Check for mintmaker config
fd -t f mintmaker
echo "---"
fd -t f -e json -e yaml -e yml "\.mintmaker"Length of output: 575 🏁 Script executed: #!/bin/bash
# Check .github directory
ls -la .github/ 2>/dev/null || echo "No .github dir"
echo "---"
# Look for any config files in .github
find .github -type f 2>/dev/null
echo "---"
# Check if there's a .renovaterc.json or similar at root
ls -la .renovate* 2>/dev/null || echo "No .renovate* files"
ls -la *.json 2>/dev/null | head -20
echo "---"
# Check git log for recent Renovate/MintMaker commits to see if prefix was used before
git log --oneline --all | grep -i "renovate\|mintmaker\|konflux" | head -20
echo "---"
# Check the PR branch name for context
git branch -a | grep -i "mintmaker\|renovate\|konflux"Length of output: 2179 🏁 Script executed: #!/bin/bash
# Check the commit that configured Renovate for ROSA CLI
git show --stat 18f2fc66
echo "---"
# See what files were changed in that commit
git show 18f2fc66 -- "*.json" "*.yaml" "*.yml" 2>/dev/null
echo "---"
# Also check if there's a mintmaker or renovate config anywhere in the tree
find . -name "*.json" -not -path "./.git/*" | xargs grep -l "commitMessagePrefix\|renovate\|mintmaker" 2>/dev/null
echo "---"
# Check gh CLI for the PR that added Renovate config
gh pr view 3247 --json title,body,headRefName,commits | python3 -c "import sys,json; d=json.load(sys.stdin); print('Title:', d['title']); print('Branch:', d['headRefName']); [print('Commit:', c['messageHeadline']) for c in d.get('commits',{}).get('nodes',[])]"Length of output: 5929 🏁 Script executed: #!/bin/bash
# Check the current state of renovate.json on master
git show origin/master:renovate.json 2>/dev/null || echo "renovate.json not on master"
echo "---"
# Also check if there were any recent changes to renovate.json
git log --oneline origin/master -- renovate.json 2>/dev/null | head -10
echo "---"
# Check when this PR branch was created vs when renovate.json was added
git log --oneline --all | head -30
echo "---"
# Look at the actual commit on the PR branch
git log --oneline HEAD | head -5Length of output: 6595
The underlying commit on this PR branch is: No prefix. The PR title ( The root cause is a race condition between when MintMaker created the branch/commit and when
Closing this PR and letting MintMaker recreate it is exactly the right fix — the new branch will be minted after the config is fully in place, so the commit message will correctly carry the |
Renovate Ignore NotificationBecause you closed this PR without merging, Renovate will ignore this update. You will not get PRs for the If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR. |
This PR contains the following updates:
a87d9f6→3bac975Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
To execute skipped test pipelines write comment
/ok-to-test.Documentation
Find out how to configure dependency updates in MintMaker documentation or see all available configuration options in Renovate documentation.