We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8189457 commit 66d3df9Copy full SHA for 66d3df9
.github/workflows/link_checkPR.yml
@@ -43,7 +43,12 @@ jobs:
43
- name: Skip Message
44
if: steps.skip-label.outputs.result == 'true'
45
run: echo "Link check was skipped due to the presence of the 'skip-link-check' label."
46
-
+
47
+ # Per tj-actions, a delete file is not a changed file so this ensures lint checking does not occur on deleted files
48
+ - name: No Files to Check
49
+ if: steps.skip-label.outputs.result == 'false' && steps.changed-files.outputs.any_changed == 'true'
50
+ run: echo "No relevant files were changed in this PR that require link checking."
51
52
- name: Suggestions
53
if: failure()
54
run: |
0 commit comments