From abbc7568871461445c2998a76b7127fa150bb12f Mon Sep 17 00:00:00 2001 From: Aakansha Doshi Date: Fri, 18 Dec 2020 21:32:37 +0530 Subject: [PATCH] ci: Add semantic pr title action (#2610) --- .github/workflows/semantic-pr-title.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/semantic-pr-title.yml diff --git a/.github/workflows/semantic-pr-title.yml b/.github/workflows/semantic-pr-title.yml new file mode 100644 index 00000000..505c22dc --- /dev/null +++ b/.github/workflows/semantic-pr-title.yml @@ -0,0 +1,16 @@ +name: "Semantic PR title" + +on: + pull_request_target: + types: + - opened + - edited + - synchronize + +jobs: + main: + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v2.1.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}