From 577460493e144e811aa2a3cd3c5483fb0cdcc8e5 Mon Sep 17 00:00:00 2001 From: Derek Su Date: Mon, 29 Jul 2024 01:19:13 +0000 Subject: [PATCH] chore(ci): add "Conventional Commits GitHub Action" Longhorn 8824 Signed-off-by: Derek Su --- .github/workflows/conventional_commits.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/conventional_commits.yml diff --git a/.github/workflows/conventional_commits.yml b/.github/workflows/conventional_commits.yml new file mode 100644 index 0000000000..73a4b1b57f --- /dev/null +++ b/.github/workflows/conventional_commits.yml @@ -0,0 +1,14 @@ +name: Conventional Commits + +on: + pull_request: + branches: + - '**' + +jobs: + build: + name: Conventional Commits + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - uses: webiny/action-conventional-commits@v1.3.0