Skip to content

Commit

Permalink
Revert linkcheck ignore logic update
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitawootten-nist committed Dec 7, 2023
1 parent 9d034b7 commit 125eda3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ jobs:
uses: peaceiris/actions-gh-pages@068dc23d9710f1ba62e86896f84735d869951305
# Deploy if on main branch and EITHER the linkcheck succeeds or ignore_linkcheck has been flipped
# crucially ignore periodic checks
if: github.ref == 'refs/heads/main' && ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && (steps.linkcheck.outcome == 'success' || github.event.inputs.ignore_linkcheck == 'true') }}
if: github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && (steps.linkcheck.outcome == 'success' || github.event.inputs.ignore_linkcheck)
with:
personal_token: ${{ secrets.COMMIT_TOKEN }}
enable_jekyll: false
Expand Down

0 comments on commit 125eda3

Please sign in to comment.