From f93791f615cd9185910ca468f92290d679bc4d05 Mon Sep 17 00:00:00 2001 From: TechWiz-3 Date: Sat, 8 Oct 2022 12:30:28 +1100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20NEW:=20link=20check=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/linkcheck.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/linkcheck.yml diff --git a/.github/workflows/linkcheck.yml b/.github/workflows/linkcheck.yml new file mode 100644 index 0000000..b67814f --- /dev/null +++ b/.github/workflows/linkcheck.yml @@ -0,0 +1,13 @@ +name: Link-check +on: + schedule: + - cron: '0 0 * * 1' # every monday + push: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Run linksafe + uses: TechWiz-3/linksafe@main