Skip to content

Commit

Permalink
try fix lint?
Browse files Browse the repository at this point in the history
  • Loading branch information
mircea-pavel-anton committed Oct 19, 2024
1 parent 3ca5b52 commit 94466ee
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/link-checker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,8 @@ jobs:
- name: Find Link Checker Issue
id: find-issue
run: |
issue_number=$( \
gh issue list \
--search "in:title $WORKFLOW_ISSUE_TITLE" \
--state open \
--json number \
| jq --raw-output '.[0].number' \
)
gh_output=$(gh issue list --state=open --json=number --search="in:title $WORKFLOW_ISSUE_TITLE")
issue_number=$(echo "$gh_output" | jq --raw-output '.[0].number')
echo "issue-number=${issue_number}" >> $GITHUB_OUTPUT
echo "${issue_number}"
env:
Expand Down

0 comments on commit 94466ee

Please sign in to comment.