From d87c4ff863506cf73926fc9c1af618c14e15eb22 Mon Sep 17 00:00:00 2001 From: Zach Trocinski Date: Tue, 3 Sep 2024 13:16:54 -0500 Subject: [PATCH] Add semantic versioning --- .github/workflows/pr-title-check.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/pr-title-check.yml diff --git a/.github/workflows/pr-title-check.yml b/.github/workflows/pr-title-check.yml new file mode 100644 index 000000000..8653fa4ef --- /dev/null +++ b/.github/workflows/pr-title-check.yml @@ -0,0 +1,17 @@ +name: .Platform - Semantic PR Check + +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 }}