From 0eb5fc0191772334dff1ff16a9fba2a3bdc16c41 Mon Sep 17 00:00:00 2001 From: Adam Dobrawy Date: Tue, 15 Oct 2019 01:35:12 +0200 Subject: [PATCH 1/3] 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 }} From 27f630e33451621799c9e201152c6ed94dc89353 Mon Sep 17 00:00:00 2001 From: Adam Dobrawy Date: Tue, 15 Oct 2019 01:36:51 +0200 Subject: [PATCH 2/3] Update monitoring_link.yml --- .github/workflows/monitoring_link.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/monitoring_link.yml b/.github/workflows/monitoring_link.yml index 8c5af02..e7d930b 100644 --- a/.github/workflows/monitoring_link.yml +++ b/.github/workflows/monitoring_link.yml @@ -1,16 +1,18 @@ on: branches: - - master - schedule: - # Run at 12:00 in working days + - master + +schedule: +# Run at 12:00 in working days - cron: 0 12 * * 0-5 jobs: build: + name: Validate links runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - name: Push changes + - name: Validate links uses: ad-m/report-link-action@master with: github_token: ${{ secrets.GITHUB_TOKEN }} From bd34eb1c22e52086e10178a537b4ebbf5e3c3d6a Mon Sep 17 00:00:00 2001 From: Adam Dobrawy Date: Tue, 15 Oct 2019 01:39:45 +0200 Subject: [PATCH 3/3] Update monitoring_link.yml --- .github/workflows/monitoring_link.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/monitoring_link.yml b/.github/workflows/monitoring_link.yml index e7d930b..86d3929 100644 --- a/.github/workflows/monitoring_link.yml +++ b/.github/workflows/monitoring_link.yml @@ -1,10 +1,10 @@ on: - branches: - - master - -schedule: -# Run at 12:00 in working days - - cron: 0 12 * * 0-5 + push: + branches: + - master + schedule: + # Run at 12:00 on working days + - cron: 0 12 * * 0-5 jobs: build: