From 9db418848a97cebfdc48d93ee3eaba292b748444 Mon Sep 17 00:00:00 2001 From: Seb Aebischer Date: Wed, 29 Jan 2025 11:52:53 +0000 Subject: [PATCH] ci: Add semantic PR check --- .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..13c51e0 --- /dev/null +++ b/.github/workflows/pr.yml @@ -0,0 +1,18 @@ +name: PR checks + +on: pull_request + +permissions: + pull-requests: read + +jobs: + semantic-pr: + # See https://github.com/amannn/action-semantic-pull-request + name: Semantic pull request + runs-on: ubuntu-latest + steps: + # Please look up the latest version from + # https://github.com/amannn/action-semantic-pull-request/releases + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}