call-point/Tag
This action increments semantic versioning embedded in git tags. Optionally the action can also push the incremented tag to the repo.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Maintainedlast commit Sep 26, 2025
- License
- None
Pinned Snippet
uses: call-point/tag-action@f119db6dc1c57a3d6e92c3a7908ecd7e7d56da5e # no releases — HEAD as of 2026-07-11tags can be moved; commit SHAs can't. why a SHA?
Inputs
| name | description | required | default |
|---|---|---|---|
| bump | Part of the semantic version number to increment. (major | minor | patch) | yes | patch |
| prefix | Tag prefix if applicable. Common examples: 'v' | 'callPilot-' | 'portal-' | yes | v |
| do_push_tag | Signal whether the action should push the next tag to the repo. | no | false |
| token | Privileged access token with write access to the repo. | no | — |
Outputs
| name | description |
|---|---|
| last_tag | Previous tag with semantic version. |
| next_tag | Tag with next semantic version. |
| last_semver | Previous semantic version. |
| next_semver | Next semantic version. |