From 48c3ff900a119aea9747c5d7960d9743f4abc236 Mon Sep 17 00:00:00 2001 From: lumtis Date: Tue, 8 Oct 2024 10:53:25 +0200 Subject: [PATCH] ci: add semantic pr workflow --- .github/workflows/semantic-pr.yml | 16 ++++++++++++++++ 1 file changed, 16 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..11af7d5 --- /dev/null +++ b/.github/workflows/semantic-pr.yml @@ -0,0 +1,16 @@ +name: "Semantic PR" +on: + pull_request_target: + types: + - opened + - edited + - synchronize + +jobs: + main: + name: Validate PR title + runs-on: ubuntu-22.04 + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}