feat: add workflow to create and push pkg Go module version tags#5001
Merged
sweatybridge merged 4 commits intodependabot/github_actions/actions-major-13db8ae6abfrom Mar 28, 2026
Conversation
Agent-Logs-Url: https://github.com/supabase/cli/sessions/78b5dd93-1c78-4cdc-b6f0-c664080934b8 Co-authored-by: sweatybridge <1639722+sweatybridge@users.noreply.github.com>
Agent-Logs-Url: https://github.com/supabase/cli/sessions/78b5dd93-1c78-4cdc-b6f0-c664080934b8 Co-authored-by: sweatybridge <1639722+sweatybridge@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add tag v1.2.2 and push to develop branch
feat: add workflow to create and push pkg Go module version tags
Mar 27, 2026
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a manual GitHub Actions workflow to create Go module semver tags for the pkg/ submodule (github.com/supabase/cli/pkg) using the pkg/vX.Y.Z tag prefix, enabling proper Go module versioning automation.
Changes:
- Introduces a
workflow_dispatchworkflow to tagdevelopHEAD aspkg/<version>. - Adds basic input validation for
v{major}.{minor}.{patch}and a guard to prevent re-tagging.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
sweatybridge
approved these changes
Mar 28, 2026
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Pull Request Test Coverage Report for Build 23672905677Details
💛 - Coveralls |
sweatybridge
approved these changes
Mar 28, 2026
12feef4
into
dependabot/github_actions/actions-major-13db8ae6ab
15 checks passed
sweatybridge
added a commit
that referenced
this pull request
Mar 28, 2026
…pdates (#5002) * chore(deps): bump the actions-major group across 1 directory with 2 updates Bumps the actions-major group with 2 updates in the / directory: [dependabot/fetch-metadata](https://github.com/dependabot/fetch-metadata) and [github/codeql-action](https://github.com/github/codeql-action). Updates `dependabot/fetch-metadata` from 2.5.0 to 3.0.0 - [Release notes](https://github.com/dependabot/fetch-metadata/releases) - [Commits](dependabot/fetch-metadata@21025c7...ffa630c) Updates `github/codeql-action` from 4.34.1 to 4.35.1 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@3869755...c10b806) --- updated-dependencies: - dependency-name: dependabot/fetch-metadata dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-major - dependency-name: github/codeql-action dependency-version: 4.35.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-major ... Signed-off-by: dependabot[bot] <support@github.com> * feat: add workflow to create and push pkg Go module version tags (#5001) * Initial plan * feat: add workflow to create and push pkg version tags Agent-Logs-Url: https://github.com/supabase/cli/sessions/78b5dd93-1c78-4cdc-b6f0-c664080934b8 Co-authored-by: sweatybridge <1639722+sweatybridge@users.noreply.github.com> * feat: add version validation and tag existence check to tag-pkg workflow Agent-Logs-Url: https://github.com/supabase/cli/sessions/78b5dd93-1c78-4cdc-b6f0-c664080934b8 Co-authored-by: sweatybridge <1639722+sweatybridge@users.noreply.github.com> * Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: sweatybridge <1639722+sweatybridge@users.noreply.github.com> Co-authored-by: Han Qiao <sweatybridge@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: sweatybridge <1639722+sweatybridge@users.noreply.github.com> Co-authored-by: Han Qiao <sweatybridge@gmail.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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.
The
pkg/subdirectory is a separate Go module (github.com/supabase/cli/pkg) requiring its own semver-prefixed tags (e.g.pkg/v1.2.2) for Go module versioning. No automation existed to create and push these tags.Changes
.github/workflows/tag-pkg.yml: Newworkflow_dispatchworkflow that:versioninput (e.g.v1.2.2)v{major}.{minor}.{patch})developat HEAD and creates + pushespkg/<version>tagUsage
Trigger manually from the Actions UI with the desired version to tag the current HEAD of
develop:Original prompt
💡 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.