From f19306e7e80fbbfd9588d3412151a64bec025086 Mon Sep 17 00:00:00 2001 From: Cedric Sirianni Date: Mon, 9 Oct 2023 16:12:46 -0400 Subject: [PATCH] ci: setup conventional commits pipeline (#13) Using https://github.com/webiny/action-conventional-commits --- .github/workflows/main.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..3811245 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,11 @@ +name: Conventional Commits + +on: [pull_request, push] + +jobs: + build: + name: Conventional Commits + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: webiny/action-conventional-commits@v1.1.0