From 1947f1541abf969e1f6edfeede39a9e542079b8c Mon Sep 17 00:00:00 2001 From: thephez Date: Wed, 2 Nov 2022 17:52:14 -0400 Subject: [PATCH] ci: add semantic pr check action --- .github/workflows/semantic-pull-request.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/semantic-pull-request.yml diff --git a/.github/workflows/semantic-pull-request.yml b/.github/workflows/semantic-pull-request.yml new file mode 100644 index 000000000000..889e2f232cfd --- /dev/null +++ b/.github/workflows/semantic-pull-request.yml @@ -0,0 +1,17 @@ +name: "Lint PR" + +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 }} \ No newline at end of file