From 4ead946f63150fc438949852f39c4086bf7f3a0a Mon Sep 17 00:00:00 2001 From: Ralf Grubenmann Date: Tue, 3 Dec 2019 09:28:37 +0100 Subject: [PATCH 1/2] Adds semantic PR github action --- .github/workflows/semantic_pr.yml | 15 +++++++++++++++ 1 file changed, 15 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 0000000000..819fd01792 --- /dev/null +++ b/.github/workflows/semantic_pr.yml @@ -0,0 +1,15 @@ +name: "Lint PR" +on: + pull_request: + types: + - opened + - edited + - synchronize + +jobs: + main: + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v1.1.1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 706f48a211589df5263b42b8d6a1e866fece5956 Mon Sep 17 00:00:00 2001 From: Ralf Grubenmann Date: Tue, 3 Dec 2019 09:36:27 +0100 Subject: [PATCH 2/2] Change action name --- .github/workflows/semantic_pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/semantic_pr.yml b/.github/workflows/semantic_pr.yml index 819fd01792..304565706f 100644 --- a/.github/workflows/semantic_pr.yml +++ b/.github/workflows/semantic_pr.yml @@ -1,4 +1,4 @@ -name: "Lint PR" +name: "Conventional Commit PR Message" on: pull_request: types: