From c7ef5ebcefd918b39d7bbf806caa8e0f7a319289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Nowacki?= Date: Thu, 23 Nov 2023 23:46:12 +0100 Subject: [PATCH] citest --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1781ab77a..edd561c46 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] @@ -13,6 +13,14 @@ jobs: lint: runs-on: ubuntu-latest steps: + - name: echo 1 + run: echo ${{ github.event.pull_request.base.ref }} + - name: echo 2 + run: echo ${{ github.event.push.base.ref }} + - name: echo 3 + run: echo ${{ github.event.pull_request.base.ref }} + - name: echo 4 + run: echo ${{ github.event.pull_request.base.ref }} - uses: actions/checkout@v3 with: fetch-depth: 0