Skip to content

Commit

Permalink
Add in:title to search query for our linkcheck action (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
choldgraf authored Jan 12, 2023
1 parent b85b949 commit c458ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/documentation-link-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
# If it does, we will update that issue.
- name: Check for an open issue
run: |
ISSUE_NUMBER=$( gh issue list --search "${{ inputs.issue_title }}" | awk '{print $1}' )
ISSUE_NUMBER=$( gh issue list --search "in:title ${{ inputs.issue_title }}" | awk '{print $1}' )
echo "ISSUE_NUMBER=$ISSUE_NUMBER" >> $GITHUB_ENV
# Use the warnings.txt content to populate a new issue.
Expand Down

0 comments on commit c458ade

Please sign in to comment.