From b4b3471bcb7a737581f25ed4dbb2ecd7314b34cd Mon Sep 17 00:00:00 2001 From: stevenhorsman Date: Fri, 6 Dec 2024 11:32:34 +0000 Subject: [PATCH] workflows: linting: Fix shellcheck SC1001 > This \/ will be a regular '/' in this context Remove ignored escape Signed-off-by: stevenhorsman --- .github/workflows/move-issues-to-in-progress.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/move-issues-to-in-progress.yaml b/.github/workflows/move-issues-to-in-progress.yaml index 9375461a35..d845082c3a 100644 --- a/.github/workflows/move-issues-to-in-progress.yaml +++ b/.github/workflows/move-issues-to-in-progress.yaml @@ -74,7 +74,7 @@ jobs: for issue_url in $linked_issue_urls do - issue=$(echo "$issue_url"| awk -F\/ '{print $NF}' || true) + issue=$(echo "$issue_url"| awk -F/ '{print $NF}' || true) [ -z "$issue" ] && { echo "::error::Cannot determine issue number from $issue_url for PR $pr"