From 60ea335db9f7a682ff4733b290c242868d5e9aa2 Mon Sep 17 00:00:00 2001 From: Raphael Odini Date: Fri, 9 Feb 2024 16:14:50 +0100 Subject: [PATCH] ci: add semantic PR check --- .github/workflows/semantic-pr.yml | 17 +++++++++++++++++ 1 file changed, 17 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 000000000..481c32915 --- /dev/null +++ b/.github/workflows/semantic-pr.yml @@ -0,0 +1,17 @@ +name: Semantic PRs + +on: + pull_request_target: + types: + - opened + - edited + - synchronize + +jobs: + main: + name: Validate PR title + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}