update-ssh-keys 0.7.0

A tool for managing authorized SSH keys
Documentation
1
2
3
4
5
6
7
8
9
10
rules:
  - name: commit title
    description: all commit titles must have a scope and be no more than 72 characters
    expression:  |-
      .commits all(((.title test "^[a-z0-9/*_.-]+: [[:alnum:] -`'\".:/_,-]+$") and (.title length < 73)) or (.title test "^Revert"))

  - name: commit description
    description: all commit descriptions must have lines no longer than 72 characters
    expression: |-
      .commits all(.description lines all(. length < 73))