Conversation
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.
Summary
This PR removes the three downstream automation workflows introduced in
ci/dependabot-auto-release—auto-merge-dependabot.yml,release-from-develop.yml, andtag-and-release.yml— along with theVERSIONfile they depended on. The Dependabot configuration itself (.github/dependabot.yml) is retained so that Dependabot continues to open Docker base image update PRs againstdevelop; only the automated downstream handling of those PRs is being removed.The workflows are being removed because the level of automation they provided — auto-merging Dependabot PRs, auto-creating release branches, auto-tagging, and auto-publishing GitHub Releases — is unnecessary for this project and operated without sufficient maintainer visibility and control. Releases will continue to be created manually from the existing
deployment.ymlworkflow, which triggers onv*tag pushes tomain.Files Changed
Added:
Modified:
Deleted:
.github/workflows/auto-merge-dependabot.ymlrelease-from-develop.ymltag-and-release.ymlVERSIONKey Changes
.github/workflows/auto-merge-dependabot.yml— removed the workflow that automatically enabled auto-merge (merge commit strategy) on any Dependabot PR carrying thedependencieslabel, eliminating unattended merges intodevelop..github/workflows/release-from-develop.yml— removed the workflow that triggered ondeveloppushes bydependabot[bot], extracted the Node.js version and SemVer, constructed arelease/v<semver>-<node_version>branch, and opened an automated PR tomainviapeter-evans/create-pull-request@v5..github/workflows/tag-and-release.yml— removed the workflow that triggered on every push tomain, created an annotated Git tag, and published a GitHub Release viaactions/create-release@v1.VERSION— removed the1.0.0plain text SemVer source-of-truth file thatrelease-from-develop.ymlandtag-and-release.ymldepended on to construct release tag names.