Update people.qmd #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: URLChecker | |
on: [push] | |
jobs: | |
check-urls: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: urlchecker-action | |
uses: urlstechie/[email protected] | |
with: | |
# A subfolder or path to navigate to in the present or cloned repository | |
subfolder: posts | |
file_types: .qmd | |
# Choose whether to print a more verbose end summary with files and broken URLs. | |
verbose: true | |
# The timeout seconds to provide to requests, defaults to 5 seconds | |
timeout: 5 | |
# How many times to retry a failed request (each is logged, defaults to 1) | |
retry_count: 3 | |
# choose if the force pass or not | |
force_pass: true |