chore(deps): update stranske/workflows digest to c2537cc - #2472
Conversation
📝 WalkthroughWalkthroughThe PR makes two independent updates. First, it pins a new commit SHA for the ChangesAction SHA Pin Update
Ledger Validation Shallow Fetch Support
Estimated code review effort🎯 2 (Simple) | ⏱️ ~12 minutes Possibly related PRs
Suggested reviewers
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
Workflow source neededPR #2472 needs either a linked GitHub issue or one valid non-issue Workflow Source before PR metadata automation can manage it safely. Please do one of:
Once a valid source is present, this warning will not be reposted. |
Automated Status SummaryHead SHA: 9bb6ff4
Coverage Overview
Coverage Trend
Top Coverage Hotspots (lowest coverage)
Low Coverage Files (<50.0%)
Updated automatically; will refresh on subsequent CI/Docker completions. Keepalive checklistScopeNo scope information available Tasks
Acceptance criteria
|
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.github/workflows/pr-00-gate.yml:
- Around line 395-396: The ledger-validation job in the template workflow at
templates/consumer-repo/.github/workflows/pr-00-gate.yml is missing the
LEDGER_VALIDATE_ALLOW_SHALLOW environment variable that exists in the main
workflow. Locate the ledger-validation job in the template file and add an env
section containing LEDGER_VALIDATE_ALLOW_SHALLOW set to "1" to keep the template
synchronized with the main workflow and prevent fleet drift.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: ASSERTIVE
Plan: Pro Plus
Run ID: d51087fc-165c-4de0-b86c-467ab89461b2
📒 Files selected for processing (4)
.github/workflows/pr-00-gate.ymlscripts/ledger_validate.pytests/scripts/test_ledger_validate.pytests/workflows/test_workflow_agents_consolidation.py
🔗 Linked repositories identified
CodeRabbit considers these linked repositories for cross-repo context during reviews:
stranske/Template(auto-detected)stranske/Ready(auto-detected)stranske/Workflows-Integration-Tests(auto-detected)
| env: | ||
| LEDGER_VALIDATE_ALLOW_SHALLOW: "1" |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
set -euo pipefail
for f in ".github/workflows/pr-00-gate.yml" \
"templates/consumer-repo/.github/workflows/pr-00-gate.yml"; do
if [[ ! -f "$f" ]]; then
echo "MISSING: $f"
continue
fi
echo "=== $f ==="
rg -n -C2 'ledger-validation|LEDGER_VALIDATE_ALLOW_SHALLOW' "$f" || true
doneRepository: stranske/Workflows
Length of output: 905
🏁 Script executed:
#!/bin/bash
# Get lines around the ledger-validation job in the template to see env section
sed -n '402,425p' templates/consumer-repo/.github/workflows/pr-00-gate.ymlRepository: stranske/Workflows
Length of output: 1005
Add LEDGER_VALIDATE_ALLOW_SHALLOW environment variable to the template's ledger-validation job.
The main gate workflow at .github/workflows/pr-00-gate.yml:395-396 includes LEDGER_VALIDATE_ALLOW_SHALLOW: "1" in the ledger-validation job env, but the distributed template at templates/consumer-repo/.github/workflows/pr-00-gate.yml does not have this setting. Per coding guidelines, workflow changes must be reflected in both locations to prevent fleet drift.
Add the env section to the template's ledger-validation job:
env:
LEDGER_VALIDATE_ALLOW_SHALLOW: "1"🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In @.github/workflows/pr-00-gate.yml around lines 395 - 396, The
ledger-validation job in the template workflow at
templates/consumer-repo/.github/workflows/pr-00-gate.yml is missing the
LEDGER_VALIDATE_ALLOW_SHALLOW environment variable that exists in the main
workflow. Locate the ledger-validation job in the template file and add an env
section containing LEDGER_VALIDATE_ALLOW_SHALLOW set to "1" to keep the template
synchronized with the main workflow and prevent fleet drift.
Source: Coding guidelines
This PR contains the following updates:
d68de19→c2537ccConfiguration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.
Summary by CodeRabbit
Bug Fixes
CI/CD
ledger-validationgate to setLEDGER_VALIDATE_ALLOW_SHALLOW=1.Tests