diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-02-07 21:31:00 +0200 |
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2023-02-07 21:41:20 +0200 |
| commit | 5e66e742d7068fa12a4d33440ef2eafd815b30a1 (patch) | |
| tree | 746887a4e5829152206b31824e71c6ea932adfa4 | |
| parent | 2285f5aca8e58643314708aea9cda3c6aaa1b80b (diff) | |
tools: Add `build` as a valid prefix for commit messages
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
| -rw-r--r-- | .github/commitlint.config.js | 1 | ||||
| -rw-r--r-- | .github/workflows/commitlint.yml | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/.github/commitlint.config.js b/.github/commitlint.config.js index cf7daab867..bee965b814 100644 --- a/.github/commitlint.config.js +++ b/.github/commitlint.config.js @@ -10,6 +10,7 @@ module.exports = { 'babeld', 'bfdd', 'bgpd', + 'build', 'doc', 'docker', 'eigrpd', diff --git a/.github/workflows/commitlint.yml b/.github/workflows/commitlint.yml index a1f273a2ce..a91c6174aa 100644 --- a/.github/workflows/commitlint.yml +++ b/.github/workflows/commitlint.yml @@ -13,6 +13,9 @@ jobs: contents: read runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Check Commit uses: wagoid/commitlint-github-action@v5 with: |
