Auto-tag GitHub & GitLab repos with semantic version tags from CI
Project description
semvertag
Auto-tag your GitLab or GitHub repository with semantic version tags from CI — one tool, two strategies, two providers.
Install
uvx semvertag tag
Use it in GitLab CI
Paste this job into your .gitlab-ci.yml:
stages: [tag]
semvertag:
stage: tag
image: python:3.13-slim
variables:
SEMVERTAG_STRATEGY: branch-prefix # or: conventional-commits
before_script:
- pip install --quiet 'uv>=0.4,<1'
script:
- uvx 'semvertag>=0.5.0,<1' tag
rules:
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
It runs uvx semvertag tag against your repo on the default branch.
semvertag inspects the latest commit + tag history, decides the
appropriate semver bump, and creates the new tag via the GitLab API.
A one-line
include: - component: …via the GitLab CI Catalog will replace this snippet once the component is published. For now, paste the job inline.
Use it in GitHub Actions
Paste this workflow into .github/workflows/semvertag.yml:
name: semvertag
on:
push:
branches: [main]
permissions:
contents: write
jobs:
tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: modern-python/semvertag@v0
semvertag auto-detects GitHub Actions, picks the bump from the latest
commit, and creates the tag ref via the GitHub API. fetch-depth: 0
matters — the default 1 misses tag-relative history. See
GitHub Actions docs for token scopes,
GitHub Enterprise setup, outputs, and troubleshooting.
Strategies
- branch-prefix (default): the latest commit on the default branch
must be a merge commit whose source branch starts with
feature/(minor),bugfix/, orhotfix/(patch). - conventional-commits: parses the latest commit's
Conventional Commits
header (
feat:minor,fix:/perf:patch,!orBREAKING CHANGE:major).
Both are configurable via env vars. See docs for the full configuration surface.
Built with
semvertag stands on other modern-python libraries:
- modern-di-typer —
dependency-injection wiring for the Typer CLI. semvertag resolves its
settings, API providers, and bump strategies through a
modern_dicontainer (semvertag/ioc.py). - httpware — the resilient HTTP client both providers use for the GitLab/GitHub REST calls (retries, timeouts, typed decoding, secret redaction).
📚 Documentation
📦 PyPI
📝 License
Part of modern-python
Browse the full list of templates and libraries in
modern-python — see the org profile for the categorized index.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file semvertag-0.7.2.tar.gz.
File metadata
- Download URL: semvertag-0.7.2.tar.gz
- Upload date:
- Size: 14.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
baa893eadf9b1d1a44f01c0ff72b7bc89b85320b2a9001d37e7aa0f23398e19a
|
|
| MD5 |
a46bf01cd60fba1fff8b5842d715295f
|
|
| BLAKE2b-256 |
44b4f099b50dff19721961ad613589c9657596a314adf7ed105647231a2adf06
|
File details
Details for the file semvertag-0.7.2-py3-none-any.whl.
File metadata
- Download URL: semvertag-0.7.2-py3-none-any.whl
- Upload date:
- Size: 22.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.23 {"installer":{"name":"uv","version":"0.11.23","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f2ac2c24f7b8215a3bc28209c470ff3564e1dc0aff18c5f2c1107a5cf0d75a8
|
|
| MD5 |
75f1a8407b5cf396a9f9b8f59159dd97
|
|
| BLAKE2b-256 |
de1c4f05711e09a44b2ec1829c393d1c66c4e59732208738e14d7fc21818cee6
|