Add a semver job to assign an automatically-incrementing version tag to commits to main.
Some checks failed
semver Build semver has succeeded
rust-test Build rust-test has succeeded
format Build format has succeeded
clippy Build clippy has failed

This automatically increments the patch (3rd) digit, so to update the major or minor version, manually push a tag.
This commit is contained in:
Tom Alexander
2024-09-28 23:59:32 -04:00
parent b122e6ee99
commit 1efd7b1d73
2 changed files with 195 additions and 0 deletions

View File

@@ -17,3 +17,9 @@ name = "format"
source = "pipeline-format.yaml"
clone_uri = "git@code.fizz.buzz:talexander/webhook_bridge.git"
skip_branches = [ "^v[0-9]+\\.[0-9]+\\.[0-9]+$" ]
[[push]]
name = "semver"
source = "pipeline-semver.yaml"
clone_uri = "git@code.fizz.buzz:talexander/webhook_bridge.git"
branches = [ "^main$", "^master$" ]