✨ Update branch creation logic to skip when no changes and amend is false#182
Merged
ChristophShyper merged 3 commits intomasterfrom Feb 18, 2026
Merged
✨ Update branch creation logic to skip when no changes and amend is false#182ChristophShyper merged 3 commits intomasterfrom
ChristophShyper merged 3 commits intomasterfrom
Conversation
Member
|
Addresses #181 |
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the action’s branch-creation behavior so it can no-op when there are no staged changes and amend is false, and adjusts CI workflows related to Docker Buildx setup.
Changes:
- Add
SKIP_BRANCH_CREATIONflow inentrypoint.shto skip branch creation (and normal push) when there are no changes andamendisfalse. - Document the updated
target_branchbehavior inaction.ymlandREADME.md. - Remove
install: truefromdocker/setup-buildx-action@v3usage in GitHub workflows.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
entrypoint.sh |
Introduces skip logic for branch creation/push when there are no changes and amend is disabled. |
action.yml |
Updates target_branch input description to reflect skip behavior. |
README.md |
Updates target_branch documentation to reflect skip behavior. |
.github/workflows/auto-create-pull-request.yml |
Removes Buildx install: true configuration. |
.github/workflows/auto-create-release.yml |
Removes Buildx install: true configuration. |
.github/workflows/cron-check-dependencies.yml |
Removes Buildx install: true configuration. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
ChristophShyper
approved these changes
Feb 18, 2026
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.
📝 Brief description
✨ Update branch creation logic to skip when no changes and amend is false
fix buildx action
🐛 Fix branch resolving
💻 Commits
| 🐛 Fix branch resolving
|
| fix buildx action
|
✨ Update branch creation logic to skip when no changes and amend is false
📁 Modified files
.github/workflows/auto-create-pull-request.yml | 2 -
.github/workflows/auto-create-release.yml | 2 -
.github/workflows/cron-check-dependencies.yml | 2 -
README.md | 2 +-
action.yml | 2 +-
entrypoint.sh | 164 ++++++++++++++-----------
6 files changed, 93 insertions(+), 81 deletions(-)
Check CONTRIBUTING.md and CODE_OF_CONDUCT.md for more information