Mirror template-action#129: remove redundant buildx install flag, add workflow_dispatch to release workflow#135
Merged
ChristophShyper merged 2 commits intomasterfrom Feb 23, 2026
Conversation
…elease workflow Co-authored-by: ChristophShyper <45788587+ChristophShyper@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Update template action based on recent changes
Mirror template-action#129: remove redundant buildx install flag, add workflow_dispatch to release workflow
Feb 23, 2026
ChristophShyper
approved these changes
Feb 23, 2026
There was a problem hiding this comment.
Pull request overview
This pull request mirrors fixes from devops-infra/template-action#129, focusing on workflow improvements and cleanup. It removes redundant Docker Buildx configuration, enables manual triggering of the release workflow, and adds logic to gracefully handle existing tags when manually re-running releases.
Changes:
- Removed redundant
install: trueparameter fromdocker/setup-buildx-action@v3across all workflows (defaults to true in v3) - Added
workflow_dispatchtrigger to release workflow with conditional tag handling - Removed
internal: truefromversion:tag-releasetask to allow direct workflow invocation
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| Taskfile.cicd.yml | Removed internal: true from version:tag-release task to enable direct invocation from workflows |
| .github/workflows/cron-check-dependencies.yml | Removed redundant install: true from Docker Buildx setup |
| .github/workflows/auto-create-release.yml | Added workflow_dispatch trigger, updated job condition, and added tag existence check with graceful handling for manual runs |
| .github/workflows/auto-create-pull-request.yml | Removed redundant install: true from Docker Buildx setup |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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.
Mirrors fixes from
devops-infra/template-action#129.Taskfile.cicd.ymlinternal: truefromversion:tag-releaseso it can be invoked directly from workflowsWorkflow:
docker/setup-buildx-action@v3(auto-create-pull-request.yml,auto-create-release.yml,cron-check-dependencies.yml)with: install: true— redundant with current action defaultsauto-create-release.ymlworkflow_dispatchtriggerif:to pass on manual dispatch alongside merged release PRsCreate and push git tagsstep now checks for an existing remote tag before tagging; skips gracefully onworkflow_dispatch, hard-fails on automated runs:💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.