Skip to content

Commit

Permalink
citest
Browse files Browse the repository at this point in the history
  • Loading branch information
mpnowacki-reef committed Nov 23, 2023
1 parent a8a1614 commit d8f5900
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Continuous Integration

on:
push:
branches: [master]
branches: [master, citest6000]
pull_request:
branches: [master]

Expand All @@ -28,7 +28,7 @@ jobs:
- name: Run linters
run: nox -vs lint
- name: Validate new changelog entries
if: contains(github.event.pull_request.labels.*.name, '-changelog') == false
if: (contains(github.event.pull_request.labels.*.name, '-changelog') == false) and (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

Expand Down

0 comments on commit d8f5900

Please sign in to comment.