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 updates
README.mdandCONTRIBUTING.mdto reflect the current state of the repository following the merges ofci/dependabot-auto-releaseandci/remove-unnecessary-automation. All references to the removed automation workflows (auto-merge-dependabot,release-from-develop,tag-and-release) and theVERSIONfile are removed from both documents. Node.js version references are bumped from24.13.1to25.7.0throughout, and the release process documentation is rewritten to describe the correct manual flow that is now in place.Files Changed
Added:
Modified:
CONTRIBUTING.mdREADME.mdDeleted:
Key Changes
CONTRIBUTING.mdfrom24.14.0to25.7.0to reflect the current Node.js version.Automated Dependency Managementsection andVERSION Filesubsection fromCONTRIBUTING.md, which documented the now-deleted automation workflows.Release Processsection inCONTRIBUTING.mdfrom the former automated seven-step flow to a manual five-step flow: create arelease/v<semver>-<node_version>branch offdevelop, open a PR tomain, merge it, push the version tag, and let the deployment workflow publish the image.Dockerfile Constraintsversion example inCONTRIBUTING.mdfromnode:24.13.1-alpine3.22tonode:25.7.0-alpine3.22.README.mdfrom24.13.1to25.7.0.README.md: builder stage fromnode:24.13.1-alpine3.22tonode:25.7.0-alpine3.22, and final stage fromruntimenode/runtime-node:v1.0.0-24.13.1toruntimenode/runtime-node:v2.0.0-25.7.0.README.mdfromv1.0.0-24.13.1tov2.0.0-25.7.0.Automated Dependency Management & Releaseparagraph from the CI/CD & Quality Guarantees section inREADME.md.README.mdto remove the reference to theVERSIONfile and updated the example tag fromv1.0.0-24.13.1tov2.0.0-25.7.0.peter-evans/create-pull-requestandactions/create-releasefrom the Acknowledgements section inREADME.md, as neither workflow that used them exists any longer.