docs links on docs.openstack.org/project-deploy-guide/charm-deployment-guide/latest/ #956
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: docs links on docs.openstack.org/project-deploy-guide/charm-deployment-guide/latest/ | |
on: | |
schedule: | |
- cron: "0 13 * * *" | |
workflow_dispatch: | |
jobs: | |
check-links: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install linkchecker | |
run: sudo pip install LinkChecker | |
- name: Write linkchecker config file | |
run: | | |
mkdir -p ~/.linkchecker | |
cat > ~/.linkchecker/linkcheckerrc <<EOF | |
[checking] | |
maxrequestspersecond=5 | |
[filtering] | |
nofollow=!https:\/\/docs.openstack.org\/project-deploy-guide\/charm-deployment-guide\/latest\/ | |
checkextern=1 | |
ignore= | |
http://localhost\* | |
https://www\.openstack\.org\/projects | |
https://openstack\.org\/projects\/openstack-faq | |
https://openstack\.org/\projects | |
https://groups\.openstack\.org | |
^.*\.css | |
[output] | |
status=0 | |
warnings=0 | |
EOF | |
- name: Run linkchecker | |
continue-on-error: true | |
run: | | |
linkchecker https://docs.openstack.org/project-deploy-guide/charm-deployment-guide/latest/ > ~/.linkchecker/openstackcharmdeploymentguidedocs-out.txt | |
- name: Parse linkchecker output | |
run: | | |
scripts/parseDocsLinkcheckerOutput openstackcharmdeploymentguidedocs-out.txt | |
- name: Send message on failure | |
if: failure() | |
run: | | |
curl -X POST \ | |
-F "workflow=${GITHUB_WORKFLOW}" \ | |
-F "repo_name=${GITHUB_REPOSITORY}" \ | |
-F "action_id=${GITHUB_RUN_ID}" \ | |
${{ secrets.BOT_URL }}?room=docs |