2020-09-05 16:28:15 +00:00
|
|
|
name: Check URLs from changed files
|
2020-08-26 02:50:12 +00:00
|
|
|
on: [push, pull_request]
|
2020-08-23 17:02:31 +00:00
|
|
|
jobs:
|
|
|
|
job:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
- uses: trilom/file-changes-action@v1.2.4
|
|
|
|
id: file_changes
|
|
|
|
with:
|
|
|
|
output: ''
|
|
|
|
- uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
|
|
|
ruby-version: 2.4.1
|
|
|
|
- run: gem install awesome_bot
|
2020-09-05 16:28:15 +00:00
|
|
|
- run: for i in ${{ steps.file_changes.outputs.files_modified }}; do echo; echo "processing $i"; awesome_bot $i --allow-redirect --allow-dupe --allow-ssl || true; done
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
path: ${{ github.workspace }}/*.json
|