From 6f451c7481107902aca3ecc726561b47e38085c9 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko Date: Fri, 27 Sep 2024 16:28:12 -0400 Subject: [PATCH] Do for any event, not just workflow_dispatch in case of debug_enabled Since otherwise cannot debug PRs or failed runs on CRON --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ee94e0e34..d1233dd09 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -102,7 +102,7 @@ jobs: - name: "(debug mode) Setup tmate session" uses: mxschmitt/action-tmate@v3 - if: ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled }} + if: ${{ inputs.debug_enabled }} - name: Run all tests if: matrix.mode != 'dandi-api'