Skip to content

Commit 785539c

Browse files
committed
ci: Check for conventional commits
1 parent 67f91ab commit 785539c

File tree

4 files changed

+42
-22
lines changed

4 files changed

+42
-22
lines changed

.github/workflows/ci.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,7 @@ jobs:
1515
system: [ x86_64-linux, aarch64-darwin ]
1616
steps:
1717
- uses: actions/checkout@v4
18+
with:
19+
fetch-depth: 0
1820
- name: om ci
1921
run: om ci --extra-access-tokens "github.com=${{ secrets.GITHUB_TOKEN }}" run --systems "${{ matrix.system }}"

dev/flake.lock

+6-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/flake.nix

+26
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
inputs = {
33
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
44
flake-parts.url = "github:hercules-ci/flake-parts";
5+
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
56
flake-root.url = "github:srid/flake-root";
67
treefmt-nix.url = "github:numtide/treefmt-nix";
78
pre-commit-hooks-nix = {
@@ -32,6 +33,31 @@
3233
nixpkgs-fmt.enable = true;
3334
};
3435
};
36+
37+
# TODO: Move this under `CIApps` once `omnix` supports running them automatically
38+
apps.cz-check = rec {
39+
meta.description = program.meta.description;
40+
program = pkgs.writeShellApplication {
41+
name = "cz-check";
42+
runtimeInputs = with pkgs; [ config.pre-commit.settings.tools.commitizen git gnugrep coreutils ];
43+
meta.description = "Verify commit messages from the default branch to HEAD follow conventional commit format";
44+
text = ''
45+
default_branch=$(git remote show origin | grep 'HEAD branch' | cut -d' ' -f5)
46+
47+
# Get the latest commit on the default branch
48+
# rev range using the `default_branch` branch name (e.g. main..HEAD), doesn't work in Github Actions
49+
latest_default_commit=$(git rev-parse origin/"$default_branch")
50+
51+
current_commit=$(git rev-parse HEAD)
52+
53+
if [ "$latest_default_commit" = "$current_commit" ]; then
54+
echo "No commits to check between $default_branch and HEAD."
55+
else
56+
cz check --rev-range "$latest_default_commit"..HEAD
57+
fi
58+
'';
59+
};
60+
};
3561
devShells.default = pkgs.mkShell {
3662
packages = with pkgs; [
3763
just

flake.nix

+8
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@
3434
dev = {
3535
inherit overrideInputs;
3636
dir = "./dev";
37+
steps = {
38+
custom = {
39+
cz-check = {
40+
type = "app";
41+
name = "cz-check";
42+
};
43+
};
44+
};
3745
};
3846
doc = {
3947
dir = "./doc";

0 commit comments

Comments
 (0)