From 34ca65ec95c65ebb9342eb5cfd4fc6e6449d5496 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Nowacki?= Date: Thu, 23 Nov 2023 23:50:22 +0100 Subject: [PATCH] citest --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1781ab77a..2bd615f9d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: Continuous Integration on: push: - branches: [master] + branches: [master, citest6000] pull_request: branches: [master] @@ -28,6 +28,7 @@ jobs: - name: Run linters run: nox -vs lint - name: Validate new changelog entries + if: ${{ github.event.pull_request.base.ref != '' }} run: if [ -z "$(git diff --diff-filter=A --name-only origin/${{ github.event.pull_request.base.ref }} changelog.d)" ]; then echo no changelog item added; exit 1; fi