From ddd47ea4e5b964147667e26c9a78b60321f264ee Mon Sep 17 00:00:00 2001 From: Raphael Odini Date: Wed, 7 Feb 2024 18:55:05 +0100 Subject: [PATCH] DevOps: check PR titles (semantic convention) (#1994) --- .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 00000000..481c3291 --- /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 }}