From 24c27966ececcf36fda988134dfa55e9c8edb794 Mon Sep 17 00:00:00 2001 From: Adithya4720 Date: Fri, 17 Nov 2023 10:08:58 +0530 Subject: [PATCH] Don't run check-release on release --- .github/workflows/check-release.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-release.yml b/.github/workflows/check-release.yml index e6e0be12a..452e9ed13 100644 --- a/.github/workflows/check-release.yml +++ b/.github/workflows/check-release.yml @@ -1,4 +1,5 @@ name: Check Release + on: push: branches: ["*"] @@ -11,15 +12,22 @@ jobs: check_release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 + - name: Checkout code + uses: actions/checkout@v3 + + - name: Setup environment + uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 with: python_version: "3.11.x" + - name: Check Release uses: jupyter-server/jupyter_releaser/.github/actions/check-release@v2 with: token: ${{ secrets.GITHUB_TOKEN }} version_spec: minor + env: + DEBUG: true # Add this line to enable debugging output + - name: Runner debug info if: always() run: |