Skip to content

Commit

Permalink
chore(website): add doc on how to access tag with prefix in conf
Browse files Browse the repository at this point in the history
  • Loading branch information
sergejomon authored and oknozor committed Mar 8, 2024
1 parent 56a8f32 commit a3da049
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/website/guide/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -976,6 +976,17 @@ To tell `cog` to pick only version starting with a prefix set this in your `cog.
tag_prefix = "v"
```
full tag including the prefix can be access in configuration file with {{version_tag}}
tag_prefix = "v"
```toml
post_bump_hooks = [
"git push origin {{version_tag}}"
]
```
## Make Cocogitto skip CI CD
The ```--skip-ci``` option of the ```bump``` and ```commit``` commands offers the possibility to skip CI/CD by adding a "skip-ci" string your commits. The default string used by Cocogitto is ```[skip ci]``` but you can override it with your own string :
Expand Down

0 comments on commit a3da049

Please sign in to comment.