From 3491a310f3da035bce3c07930f55a320eaeb3d31 Mon Sep 17 00:00:00 2001 From: Fredrik Averpil Date: Mon, 24 Jun 2024 20:27:32 +0200 Subject: [PATCH] ci: conventional commits --- .github/workflows/cc.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/cc.yml diff --git a/.github/workflows/cc.yml b/.github/workflows/cc.yml new file mode 100644 index 00000000..6b732e24 --- /dev/null +++ b/.github/workflows/cc.yml @@ -0,0 +1,25 @@ +name: cc +on: + pull_request: + pull_request_target: + types: + - opened + - edited + - synchronize +permissions: + pull-requests: read +jobs: + pr: + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + ignoreLabels: | + autorelease: pending + commits: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: webiny/action-conventional-commits@v1.3.0