From fd605a2852368a91b3fcee6dda1f824e6db886c1 Mon Sep 17 00:00:00 2001 From: mringler Date: Sat, 21 Mar 2026 12:01:06 +0100 Subject: [PATCH 1/2] Add PR template --- .github/pull_request_template.md | 58 ++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 .github/pull_request_template.md diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000000..8498beb05a --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,58 @@ +## Issue + + + + +## Changes + + + + +## Implementation Details + + + + +## Test strategy + + + + +## Notes + From 6ade9f262bb15be6960955babc13aed303a80c73 Mon Sep 17 00:00:00 2001 From: mringler Date: Sat, 21 Mar 2026 12:27:35 +0100 Subject: [PATCH 2/2] Omit CI when just .md files change, check concurrency --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1211107b08..669115e496 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,8 +6,14 @@ on: - 'main' - 'develop' pull_request: + paths-ignore: + - '**.md' workflow_dispatch: +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + env: DB_NAME: 'perpl_tests' DB_USER: 'perpl'