From ba586fca7d8fd76da9cf7ba55f7adc9a0f9a3979 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Sat, 6 Jul 2024 20:42:51 +0300 Subject: [PATCH] feat(workflows): semantic-pr --- .github/workflows/semantic-pr.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/semantic-pr.yml diff --git a/.github/workflows/semantic-pr.yml b/.github/workflows/semantic-pr.yml new file mode 100644 index 0000000..684d5e2 --- /dev/null +++ b/.github/workflows/semantic-pr.yml @@ -0,0 +1,18 @@ +name: Semantic PR + +on: + pull_request_target: + types: + - opened + - edited + - synchronize + +jobs: + semantic-pr: + runs-on: self-hosted + steps: + - uses: amannn/action-semantic-pull-request@v5.5.2 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + validateSingleCommit: true