From e33db460ad52334d31cf70564d9417d8b9ad1491 Mon Sep 17 00:00:00 2001 From: Fredrik Averpil Date: Mon, 24 Jun 2024 21:41:18 +0200 Subject: [PATCH] ci: require conventional commits (#48) --- .github/workflows/cc.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..21fc2f48 --- /dev/null +++ b/.github/workflows/cc.yml @@ -0,0 +1,19 @@ +name: cc +on: + 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