From dc1e0539968547dde54af5ce34638f52909fdffe Mon Sep 17 00:00:00 2001 From: Noboru Saito Date: Wed, 1 Apr 2026 09:55:10 +0900 Subject: [PATCH] =?UTF-8?q?ubuntu-slim=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit label処理はubuntu-slimで十分なため labelにスペースが含まれてよいように修正 --- .github/workflows/pr-label.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-label.yml b/.github/workflows/pr-label.yml index 9e477450bac..88c7874635e 100644 --- a/.github/workflows/pr-label.yml +++ b/.github/workflows/pr-label.yml @@ -3,7 +3,7 @@ name: label jobs: label: - runs-on: ubuntu-latest + runs-on: ubuntu-slim steps: - name: get label length id: getlength @@ -11,7 +11,7 @@ jobs: labels: ${{ toJson(github.event.pull_request.labels) }} run: | echo "$labels" - LL=$(echo $labels | jq '. | length' ) + LL=$(echo "$labels" | jq '. | length' ) echo "Label_length=$LL" >> $GITHUB_OUTPUT - name: re-review id: re-review