fix broken urls (#3680)

* fix broken urls

* trigger on pull request creation too

* allow certificate verify failed

some sites have misconfigured/expired certs

* adding back two links that were manually verified good
This commit is contained in:
borgified
2020-08-25 19:50:12 -07:00
committed by GitHub
parent 99c37f3306
commit 724c2b277c
2 changed files with 4 additions and 16 deletions

View File

@ -1,5 +1,5 @@
name: check_urls
on: [push]
on: [push, pull_request]
jobs:
job:
runs-on: ubuntu-latest
@ -13,4 +13,4 @@ jobs:
with:
ruby-version: 2.4.1
- run: gem install awesome_bot
- run: for i in ${{ steps.file_changes.outputs.files_modified }}; do echo; echo "processing $i"; awesome_bot $i --allow-redirect --allow-dupe --skip-save-results; done
- run: for i in ${{ steps.file_changes.outputs.files_modified }}; do echo; echo "processing $i"; awesome_bot $i --allow-redirect --allow-dupe --skip-save-results --allow-ssl; done