-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add release workflow for GitHub Actions (#835)
Add release workflow for github Co-authored-by: Aaron Tomb <[email protected]>
- Loading branch information
Jared Weakly
authored
Sep 1, 2020
1 parent
f3296d3
commit 5ec88ad
Showing
5 changed files
with
228 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
feature: ["feature/*", "feat/*"] | ||
enhancement: ["enhancement/*"] | ||
fix: ["fix/*", "bugfix/*", "bug/*"] | ||
breaking: ["breaking/*"] | ||
solver: ["solver/*", "*z3*", "*cvc4*", "*yices*"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name-template: "v$NEXT_PATCH_VERSION" | ||
tag-template: "v$NEXT_PATCH_VERSION" | ||
categories: | ||
- title: "New Features" | ||
labels: | ||
- "feature" | ||
- "enhancement" | ||
- title: "Breaking Changes" | ||
labels: | ||
- "breaking" | ||
- title: "Bug Fixes" | ||
labels: | ||
- "fix" | ||
- "bugfix" | ||
- "bug" | ||
- title: "Solver Versions" | ||
labels: | ||
- "solver" | ||
change-template: "- $TITLE @$AUTHOR (PR #$NUMBER)" | ||
|
||
replacers: | ||
- search: '/Z3 (\d+)\.(\d+)\.(\d+)/ig' | ||
replace: "[Z3 $1.$2.$3](https://github.com/Z3Prover/z3/releases/tag/z3-$1.$2.$3)" | ||
- search: '/yices (\d+)\.(\d+)\.(\d+)/ig' | ||
replace: "[Yices $1.$2.$3](https://yices.csl.sri.com/release-notes.html)" | ||
- search: '/cvc(4?) (\d+)\.(\d+)\.(\d+)/ig' | ||
replace: "[CVC4 $3.$4](https://github.com/CVC4/CVC4/releases/tag/$3.$4)" | ||
|
||
template: | | ||
## SAW-Script $NEXT_PATCH_VERSION | ||
$CHANGES |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.