From b71598c7b393cc50a490325cc6c975919ad40582 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miko=C5=82aj=20Nowak?= Date: Thu, 9 Nov 2023 16:48:32 +0100 Subject: [PATCH] chore(github): add conventional commits check This commit adds action-conventional-commits gh action KAG-1290 --- .github/workflows/conventional-commit-check.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/conventional-commit-check.yml diff --git a/.github/workflows/conventional-commit-check.yml b/.github/workflows/conventional-commit-check.yml new file mode 100644 index 000000000000..84b9b122b6e6 --- /dev/null +++ b/.github/workflows/conventional-commit-check.yml @@ -0,0 +1,17 @@ +name: Conventional Commits + +concurrency: + # for PR's cancel the running task, if another commit is pushed + group: ${{ github.workflow }} ${{ github.ref }} + cancel-in-progress: ${{ github.event_name == 'pull_request' }} + +on: + pull_request: {} + +jobs: + build: + name: Conventional Commits + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: webiny/action-conventional-commits@v1.1.0