From 20fb34fa4425a85dc3b1644eee152ad01cdcbc50 Mon Sep 17 00:00:00 2001 From: Robert Sturla Date: Wed, 28 Aug 2024 20:19:13 +0100 Subject: [PATCH] fix: rerun conventional commit check when title changed --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7da683e..0f9868c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,12 @@ name: CI on: + pull_request_target: + types: + - opened + - edited + - synchronize + - reopened pull_request: push: branches: @@ -13,7 +19,7 @@ permissions: jobs: conventional-commits: - if: ${{ github.event_name }} == 'pull_request' + if: ${{ github.event_name }} == 'pull_request_target' runs-on: ubuntu-latest steps: - uses: amannn/action-semantic-pull-request@v5