Skip to content

Commit

Permalink
Make it so blank is the logic
Browse files Browse the repository at this point in the history
  • Loading branch information
cansavvy committed Feb 29, 2024
1 parent 7baf79b commit 45eb1a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-url.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@ jobs:
echo "issue_exists=$issue_exists" >> $GITHUB_OUTPUT
# We want to retrieve this file after this runs so we can see what spell check errors were detected
- name: Archive session info
- name: Archive session info
uses: actions/upload-artifact@v3
# These arguments underneath `with` are generally action specific so we have to check the documentation: https://github.com/marketplace/actions/upload-a-build-artifact
with:
name: session_info.txt
path: session_info.txt

- name: If too many URL errors, then make an issue
if: ${{ steps.check-report.outputs.error_num >= 1 && steps.find-issue.outputs.issue_exists == 'FALSE'}}
if: ${{ steps.check-report.outputs.error_num >= 1 && steps.find-issue.outputs.issue_exists == ''}}
uses: JasonEtco/create-an-issue@v2
with:
filename: .github/ISSUE_TEMPLATE/url-error.md
Expand Down

0 comments on commit 45eb1a1

Please sign in to comment.