From abd0364b909b97e8c097d364c1f1e8e0b41e7dcd Mon Sep 17 00:00:00 2001 From: "Philipp A." Date: Tue, 18 Nov 2025 10:47:59 +0100 Subject: [PATCH] ci: add a PR check workflow --- .github/workflows/pr.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/pr.yml diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 0000000..ccad661 --- /dev/null +++ b/.github/workflows/pr.yml @@ -0,0 +1,18 @@ +name: PR + +on: + pull_request_target: + types: + - opened + - edited + - reopened + +jobs: + check: + name: Checks + runs-on: ubuntu-latest + steps: + - name: Check PR title + uses: amannn/action-semantic-pull-request@v6 + env: # Needs repo options: “Squash and merge” with commit message set to “PR title” + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}