From 946aea69a2bae473033b0de084a40b12bffd3757 Mon Sep 17 00:00:00 2001 From: Janek Mangold Date: Mon, 13 Jul 2026 14:46:32 +0200 Subject: [PATCH 1/2] feat: add semantic pull request validation workflow --- .github/workflows/semantic_pull_requests.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/semantic_pull_requests.yml diff --git a/.github/workflows/semantic_pull_requests.yml b/.github/workflows/semantic_pull_requests.yml new file mode 100644 index 0000000..15600e6 --- /dev/null +++ b/.github/workflows/semantic_pull_requests.yml @@ -0,0 +1,17 @@ +name: "Semantic PR" + +on: + pull_request: + +jobs: + semantic_pr: + name: Validate PR title + runs-on: [self-hosted] + permissions: + pull-requests: read + contents: read + statuses: write + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 5d61a67a1b4b3a2afc35028f4a7baf9bc37712f8 Mon Sep 17 00:00:00 2001 From: Janek Mangold Date: Mon, 13 Jul 2026 15:06:03 +0200 Subject: [PATCH 2/2] feat: update semantic pull request validation workflow to use ubuntu-latest --- .github/workflows/semantic_pull_requests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/semantic_pull_requests.yml b/.github/workflows/semantic_pull_requests.yml index 15600e6..8e04600 100644 --- a/.github/workflows/semantic_pull_requests.yml +++ b/.github/workflows/semantic_pull_requests.yml @@ -6,7 +6,7 @@ on: jobs: semantic_pr: name: Validate PR title - runs-on: [self-hosted] + runs-on: ubuntu-latest permissions: pull-requests: read contents: read