From 30d2c0baf4d03f642e4d051b207cb8149c52f095 Mon Sep 17 00:00:00 2001 From: Daniel Schmidt Date: Tue, 22 Nov 2022 15:52:53 +0100 Subject: [PATCH] chore: add debugging job --- .github/workflows/unit-all.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/unit-all.yml b/.github/workflows/unit-all.yml index f91f0c6f57..3a0b63ed2c 100644 --- a/.github/workflows/unit-all.yml +++ b/.github/workflows/unit-all.yml @@ -9,6 +9,12 @@ on: - reopened jobs: + debugging: + runs-on: ubuntu-latest + steps: + - name: "Debug" + run: echo hi + all_unit_tests: if: ${{ contains(github.event.pull_request.labels.*.name, 'ci/run-unit') || contains(github.event.pull_request.labels.*.name, 'ci/run-all') }} uses: ./.github/workflows/unit.yml