From 4941d5f1bf6ff09aecb1b85faf291438cf3ea056 Mon Sep 17 00:00:00 2001 From: amonkhouse Date: Fri, 31 Oct 2025 14:36:21 +0000 Subject: [PATCH] feat: add conventional commit github action --- .github/workflows/run-conventional-commits-check.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/run-conventional-commits-check.yml diff --git a/.github/workflows/run-conventional-commits-check.yml b/.github/workflows/run-conventional-commits-check.yml new file mode 100644 index 0000000..a591af3 --- /dev/null +++ b/.github/workflows/run-conventional-commits-check.yml @@ -0,0 +1,9 @@ +name: ☢️ Conventional Commits Check + +on: + pull_request: + types: [opened, edited] + +jobs: + run-conventional-commits-check: + uses: artsy/duchamp/.github/workflows/conventional-commits-check.yml@main