From 90da7bf4f8a22fa8f354f084ec31564fbdec9c19 Mon Sep 17 00:00:00 2001 From: Silvano Cerza <3314350+silvanocerza@users.noreply.github.com> Date: Wed, 1 Mar 2023 17:49:04 +0100 Subject: [PATCH] Fix docstring-labeler.yml workflow (#4307) --- .github/workflows/docstring-labeler.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/docstring-labeler.yml b/.github/workflows/docstring-labeler.yml index b016a4c16..afbfc1063 100644 --- a/.github/workflows/docstring-labeler.yml +++ b/.github/workflows/docstring-labeler.yml @@ -30,7 +30,7 @@ jobs: - name: Get docstrings id: base-docstrings run: | - CHECKSUM=$(python "${{ runner.temp }}/docstrings_checksum.py" --root "${{ env.GITHUB_WORKSPACE }}") + CHECKSUM=$(python "${{ runner.temp }}/docstrings_checksum.py" --root "${{ github.workspace }}") echo "checksum=$CHECKSUM" >> "$GITHUB_OUTPUT" - name: Checkout HEAD commit @@ -39,7 +39,7 @@ jobs: - name: Get docstrings id: head-docstrings run: | - CHECKSUM=$(python "${{ runner.temp }}/docstrings_checksum.py" --root "${{ env.GITHUB_WORKSPACE }}") + CHECKSUM=$(python "${{ runner.temp }}/docstrings_checksum.py" --root "${{ github.workspace }}") echo "checksum=$CHECKSUM" >> "$GITHUB_OUTPUT" - name: Check if we should label