From f93791f615cd9185910ca468f92290d679bc4d05 Mon Sep 17 00:00:00 2001 From: TechWiz-3 Date: Sat, 8 Oct 2022 12:30:28 +1100 Subject: [PATCH 1/4] =?UTF-8?q?=F0=9F=93=A6=20NEW:=20link=20check=20workfl?= =?UTF-8?q?ow?= 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 From e298bd579f9ca3653149976f0a183758c9b12de5 Mon Sep 17 00:00:00 2001 From: TechWiz-3 Date: Sat, 8 Oct 2022 12:32:32 +1100 Subject: [PATCH 2/4] =?UTF-8?q?=F0=9F=93=A6=20NEW:=20whitelist=20png=20fil?= =?UTF-8?q?e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/linkcheck.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/linkcheck.yml b/.github/workflows/linkcheck.yml index b67814f..093c3a9 100644 --- a/.github/workflows/linkcheck.yml +++ b/.github/workflows/linkcheck.yml @@ -11,3 +11,5 @@ jobs: - uses: actions/checkout@v3 - name: Run linksafe uses: TechWiz-3/linksafe@main + with: + whitelist_files: "codecrafters-banner.png" From 548922cde463678af9f0636fac649b4ec2087a4b Mon Sep 17 00:00:00 2001 From: TechWiz-3 Date: Thu, 13 Oct 2022 20:06:33 +1100 Subject: [PATCH 3/4] =?UTF-8?q?=F0=9F=93=A6=20NEW:=20whitelist?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/linkcheck.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/linkcheck.yml b/.github/workflows/linkcheck.yml index 093c3a9..f9e7b07 100644 --- a/.github/workflows/linkcheck.yml +++ b/.github/workflows/linkcheck.yml @@ -10,6 +10,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Run linksafe - uses: TechWiz-3/linksafe@main + uses: TechWiz-3/linksafe@fast with: whitelist_files: "codecrafters-banner.png" + whitelist_links: "https://simjue.pages.dev/post/2018/07-01-go-unix-shell/,https://www.jamasoftware.com/blog/lets-write-redux/,https://learnopengl.com/In-Practice/2D-Game/Breakout,https://www.sohamkamani.com/nodejs/telegram-bot/,https://sj14.gitlab.io/post/2018-07-01-go-unix-shell/,https://www.datacamp.com" From 73e0ac1ef1f663fac74349fb4846e7d72e064dfd Mon Sep 17 00:00:00 2001 From: TechWiz-3 Date: Thu, 13 Oct 2022 20:14:44 +1100 Subject: [PATCH 4/4] =?UTF-8?q?=F0=9F=91=8C=20IMPROVE:=20add=20token=20for?= =?UTF-8?q?=20fast=20checking?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/linkcheck.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/linkcheck.yml b/.github/workflows/linkcheck.yml index f9e7b07..9d09820 100644 --- a/.github/workflows/linkcheck.yml +++ b/.github/workflows/linkcheck.yml @@ -14,3 +14,5 @@ jobs: with: whitelist_files: "codecrafters-banner.png" whitelist_links: "https://simjue.pages.dev/post/2018/07-01-go-unix-shell/,https://www.jamasoftware.com/blog/lets-write-redux/,https://learnopengl.com/In-Practice/2D-Game/Breakout,https://www.sohamkamani.com/nodejs/telegram-bot/,https://sj14.gitlab.io/post/2018-07-01-go-unix-shell/,https://www.datacamp.com" + env: + TOKEN: ${{ secrets.TOKEN }}