File tree 4 files changed +42
-22
lines changed
4 files changed +42
-22
lines changed Original file line number Diff line number Diff line change 15
15
system : [ x86_64-linux, aarch64-darwin ]
16
16
steps :
17
17
- uses : actions/checkout@v4
18
+ with :
19
+ fetch-depth : 0
18
20
- name : om ci
19
21
run : om ci --extra-access-tokens "github.com=${{ secrets.GITHUB_TOKEN }}" run --systems "${{ matrix.system }}"
Original file line number Diff line number Diff line change 2
2
inputs = {
3
3
nixpkgs . url = "github:nixos/nixpkgs/nixpkgs-unstable" ;
4
4
flake-parts . url = "github:hercules-ci/flake-parts" ;
5
+ flake-parts . inputs . nixpkgs-lib . follows = "nixpkgs" ;
5
6
flake-root . url = "github:srid/flake-root" ;
6
7
treefmt-nix . url = "github:numtide/treefmt-nix" ;
7
8
pre-commit-hooks-nix = {
32
33
nixpkgs-fmt . enable = true ;
33
34
} ;
34
35
} ;
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
+ } ;
35
61
devShells . default = pkgs . mkShell {
36
62
packages = with pkgs ; [
37
63
just
Original file line number Diff line number Diff line change 34
34
dev = {
35
35
inherit overrideInputs ;
36
36
dir = "./dev" ;
37
+ steps = {
38
+ custom = {
39
+ cz-check = {
40
+ type = "app" ;
41
+ name = "cz-check" ;
42
+ } ;
43
+ } ;
44
+ } ;
37
45
} ;
38
46
doc = {
39
47
dir = "./doc" ;
You can’t perform that action at this time.
0 commit comments