From 5e66e742d7068fa12a4d33440ef2eafd815b30a1 Mon Sep 17 00:00:00 2001 From: Donatas Abraitis Date: Tue, 7 Feb 2023 21:31:00 +0200 Subject: [PATCH] tools: Add `build` as a valid prefix for commit messages Signed-off-by: Donatas Abraitis --- .github/commitlint.config.js | 1 + .github/workflows/commitlint.yml | 3 +++ 2 files changed, 4 insertions(+) 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: -- 2.39.5