Skip to content

Commit

Permalink
ci: add cocogitto config
Browse files Browse the repository at this point in the history
  • Loading branch information
justinrubek committed Sep 24, 2023
1 parent 23dbe56 commit a3ae7ee
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 3 deletions.
23 changes: 23 additions & 0 deletions cog.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
ignore_merge_commits = false
branch_whitelist = ["main"]
pre_bump_hooks = [
"bomper {{latest}} {{version}}"
]
post_bump_hooks = [
"git push",
"git push origin {{version}}"
]

[commit_types]

[changelog]
path = "CHANGELOG.md"
template = "remote"
remote = "github.com"
repository = "annapurna"
owner = "justinrubek"
authors = [
{ signature = "Justin Rubek", username = "justinrubek" }
]

[bump_profiles]
4 changes: 4 additions & 0 deletions flake-parts/ci.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,13 @@
...
}: let
ciPackages = [
self'.packages.cocogitto
self'.packages.bomper
];

packages = {
cocogitto = pkgs.cocogitto;
bomper = inputs'.bomper.packages.cli;
};

devShells = {
Expand Down
3 changes: 0 additions & 3 deletions flake-parts/shells.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@
pkgs.cargo-nextest
pkgs.bacon
pkgs.wasm-bindgen-cli
# version control
pkgs.cocogitto
inputs'.bomper.packages.cli
# formatting
self'.packages.treefmt
];
Expand Down

0 comments on commit a3ae7ee

Please sign in to comment.