From 8aa5aef83480f85f6ed430ee91996a77f6646f9e Mon Sep 17 00:00:00 2001 From: Seb Aebischer Date: Tue, 31 Mar 2026 21:44:26 +0100 Subject: [PATCH] ci: Add semantic PR check --- .github/workflows/pr.yml | 15 +++++++++++++++ 1 file changed, 15 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..c45ec06 --- /dev/null +++ b/.github/workflows/pr.yml @@ -0,0 +1,15 @@ +name: PR checks + +on: pull_request + +jobs: + # See https://github.com/amannn/action-semantic-pull-request + check-semantic-pr: + name: Semantic pull request + runs-on: ubuntu-latest + permissions: + pull-requests: read + steps: + - uses: amannn/action-semantic-pull-request@v6 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}