Conversation
Co-authored-by: mfa777 <2765931+mfa777@users.noreply.github.com> Agent-Logs-Url: https://github.com/mfa777/pg_with_backup/sessions/a706d4a9-e184-41b4-8c1c-47ea16464b41
…er-pr Add GitHub Release workflow for merged master PRs
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 pull request adds a new workflow to automate semantic version tagging and GitHub Releases when pull requests are merged into
master, and updates the documentation to describe these changes. The workflow calculates the next semantic version, creates a tag, and publishes a release with autogenerated notes and metadata. Documentation is updated to explain the new release process and how to customize it.Release automation:
.github/workflows/release-on-master-merge.ymlto create a semantic version tag and publish a GitHub Release automatically when a pull request is merged intomaster. The workflow usesanothrNick/github-tag-actionfor tagging andsoftprops/action-gh-releasefor publishing, with customizable bump logic and initial version.Documentation updates:
docs/BUILD_AND_PUSH.mdto describe the new release workflow, including how semantic versioning is handled, what triggers a release, and which secrets are required.docs/BUILD_AND_PUSH.mdon customizing the release workflow's default bump behavior and initial version, and documented the location of the workflow file.