diff options
| author | Paul Buetow <paul@buetow.org> | 2025-08-16 09:39:09 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-08-16 09:39:09 +0300 |
| commit | 9603960eeea6b06c5184850c2c2af7d257c77fdd (patch) | |
| tree | bbf495e79ae12390bb91019a770fe598fbb89785 /doc | |
| parent | ab561e848dd7ca10497da4ef3cfba9fa02ac48d0 (diff) | |
feat(release): add repo/tag skip_releases and logs; bump version to 0.8.7v0.8.7
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/configuration.md | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/doc/configuration.md b/doc/configuration.md index e3b94cb..25a425f 100644 --- a/doc/configuration.md +++ b/doc/configuration.md @@ -65,6 +65,19 @@ Array of repository names to sync. If empty, use `--sync-codeberg-public` or `-- #### exclude_branches (optional) Array of regex patterns for branches to exclude from synchronization. +#### skip_releases (optional) +Map of repository names to an array of tag names for which releases should not be created on any platform (GitHub and Codeberg). Useful to suppress auto-release for specific historical tags. + +Example: +```json +{ + "skip_releases": { + "fapi": ["0.0.1", "0.0.2"], + "another-repo": ["v1.0.0"] + } +} +``` + ## Examples ### Minimal Configuration @@ -325,4 +338,4 @@ ERROR: Token test failed: authentication failed (401) **Solution**: - Verify token is correct and not expired - Check token has required permissions -- Ensure no extra whitespace in token
\ No newline at end of file +- Ensure no extra whitespace in token |
