chore(deps): update stefanzweifel/git-auto-commit-action action to v6.0.1 - #181
Open
renovate[bot] wants to merge 1 commit into
Open
chore(deps): update stefanzweifel/git-auto-commit-action action to v6.0.1#181renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
July 28, 2025 15:35
dcdf0c7 to
05fd12c
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
August 10, 2025 15:37
05fd12c to
f3246d7
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
September 25, 2025 17:56
f3246d7 to
612ea6f
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
October 9, 2025 11:48
612ea6f to
d85ff69
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
November 10, 2025 23:09
d85ff69 to
8cf92be
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
December 15, 2025 15:06
8cf92be to
b8637f4
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
February 2, 2026 16:03
b8637f4 to
a41cfde
Compare
Comment on lines
43
to
49
| fi | ||
|
|
||
| - name: Commit chart version | ||
| uses: stefanzweifel/git-auto-commit-action@v6 | ||
| uses: stefanzweifel/git-auto-commit-action@778341af668090896ca464160c2def5d1d1a3eb0 # v6.0.1 | ||
| if: steps.commit_exists.outputs.result == 'false' | ||
| with: | ||
| commit_message: ${{ env.COMMIT_MESSAGE }} |
There was a problem hiding this comment.
Bug: The workflow references steps.pr.outputs.base_ref, which does not exist. This will cause the git command to fail and terminate the workflow on every run.
Severity: CRITICAL
Suggested Fix
To fix this, you need to correctly determine the base reference for a push event. One approach is to use github.ref_name to get the current branch and then determine the base branch (e.g., main or master) to compare against. Alternatively, change the workflow trigger from push to pull_request if these branches always have an associated pull request, which would make github.base_ref available.
Prompt for AI Agent
Review the code at the location below. A potential bug has been identified by an AI
agent.
Verify if this is a real issue. If it is, propose a fix; if not, explain why it's not
valid.
Location: .github/workflows/build.yaml#L43-L49
Potential issue: The GitHub workflow is configured to trigger on `push` events for
Renovate and Dependabot branches. It attempts to set the `BASE_REF` environment variable
using `steps.pr.outputs.base_ref`, but no step with `id: pr` is defined. As a result,
`BASE_REF` will be an empty string. This causes the subsequent `git rev-list` command to
be malformed (`git rev-list --pretty=oneline "origin/..HEAD"`), which will always fail.
Because the step is configured to exit on error, the entire workflow will fail,
preventing automated dependency updates from being processed.
Did we get this right? 👍 / 👎 to inform future reviews.
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
February 12, 2026 13:15
a41cfde to
5a0ac9f
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
March 5, 2026 11:35
5a0ac9f to
4bd8571
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
March 26, 2026 19:34
4bd8571 to
8d6525b
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
2 times, most recently
from
April 15, 2026 12:17
405559c to
5246320
Compare
renovate
Bot
deleted the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
April 16, 2026 13:52
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
2 times, most recently
from
April 16, 2026 20:56
5246320 to
02e7e93
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
2 times, most recently
from
April 19, 2026 15:12
02e7e93 to
00ad55c
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
May 12, 2026 14:11
00ad55c to
6890610
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
2 times, most recently
from
May 28, 2026 22:07
748aa79 to
8917350
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
2 times, most recently
from
June 18, 2026 16:48
5167f6b to
6953b54
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
3 times, most recently
from
July 24, 2026 23:09
3cb2c01 to
d717808
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
July 30, 2026 21:48
d717808 to
b6cdeee
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
August 12, 2026 02:32
b6cdeee to
83a205b
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
August 26, 2026 23:02
83a205b to
348a1f3
Compare
renovate
Bot
force-pushed
the
renovate/stefanzweifel-git-auto-commit-action-6.x
branch
from
September 3, 2026 23:32
348a1f3 to
c3f7cc8
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v6→v6.0.1Release Notes
stefanzweifel/git-auto-commit-action (stefanzweifel/git-auto-commit-action)
v6.0.1Compare Source
Fixed
Configuration
📅 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.