From 596d79718c525f2c4bffe6e70632b08690d93c26 Mon Sep 17 00:00:00 2001 From: michal-skraburski Date: Sun, 16 Aug 2026 22:25:01 +0100 Subject: [PATCH 1/3] feat: add github action lint for PR titles --- .github/workflows/pr-check.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/pr-check.yml diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml new file mode 100644 index 0000000..af847b2 --- /dev/null +++ b/.github/workflows/pr-check.yml @@ -0,0 +1,20 @@ +name: 'Lint PR' + +on: + pull_request_target: + types: + - opened + - reopened + - edited + # - synchronize (if you use required Actions) + +jobs: + main: + name: Validate PR title + runs-on: ubuntu-slim + permissions: + pull-requests: read + steps: + - uses: amannn/action-semantic-pull-request@v6 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 28635c568e949de0bf73603c70f38d4e3c178f68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Skraburski?= Date: Tue, 25 Aug 2026 08:22:29 +0100 Subject: [PATCH 2/3] Update pr-check.yml Co-authored-by: Wiktoria van Harneveldt <62669899+wiktoriavh@users.noreply.github.com> --- .github/workflows/pr-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index af847b2..b3f51e5 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -1,4 +1,4 @@ -name: 'Lint PR' +name: 'Validate Pull Request Title' on: pull_request_target: From 3800e9dafccbf771053641fc0e7d76dc73c92203 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Skraburski?= Date: Tue, 25 Aug 2026 08:22:45 +0100 Subject: [PATCH 3/3] Update pr-check.yml Co-authored-by: Wiktoria van Harneveldt <62669899+wiktoriavh@users.noreply.github.com> --- .github/workflows/pr-check.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index b3f51e5..6f7fff4 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -10,7 +10,7 @@ on: jobs: main: - name: Validate PR title + name: Validate Pull Request Title runs-on: ubuntu-slim permissions: pull-requests: read