From 0eb5fc0191772334dff1ff16a9fba2a3bdc16c41 Mon Sep 17 00:00:00 2001 From: Adam Dobrawy Date: Tue, 15 Oct 2019 01:35:12 +0200 Subject: [PATCH] Workflow to monitor external links --- .github/workflows/monitoring_link.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/monitoring_link.yml diff --git a/.github/workflows/monitoring_link.yml b/.github/workflows/monitoring_link.yml new file mode 100644 index 0000000..8c5af02 --- /dev/null +++ b/.github/workflows/monitoring_link.yml @@ -0,0 +1,16 @@ +on: + branches: + - master + schedule: + # Run at 12:00 in working days + - cron: 0 12 * * 0-5 + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + - name: Push changes + uses: ad-m/report-link-action@master + with: + github_token: ${{ secrets.GITHUB_TOKEN }}