Merge pull request #18 from ad-m/ad-m-patch-1

Workflow to monitor external links
This commit is contained in:
Adam Dobrawy 2019-10-15 01:40:33 +02:00 committed by GitHub
commit 4213c83ddb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

18
.github/workflows/monitoring_link.yml vendored Normal file
View File

@ -0,0 +1,18 @@
on:
push:
branches:
- master
schedule:
# Run at 12:00 on working days
- cron: 0 12 * * 0-5
jobs:
build:
name: Validate links
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Validate links
uses: ad-m/report-link-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}