From 6728f799a07cbf9cc3392274bb48aedcbafd6bf0 Mon Sep 17 00:00:00 2001 From: Herman Slatman Date: Mon, 5 Jul 2021 20:21:57 +0200 Subject: [PATCH 1/2] Add Lychee action --- .github/workflows/links.yml | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .github/workflows/links.yml diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml new file mode 100644 index 0000000..63e4249 --- /dev/null +++ b/.github/workflows/links.yml @@ -0,0 +1,36 @@ +name: Links + +on: + push: + branches: + - main + pull_request: + branches: + - main + workflow_dispatch: + # repository_dispatch: + # workflow_dispatch: + # schedule: + # - cron: "00 18 * * *" + +jobs: + linkChecker: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Link Checker + id: lychee + uses: lycheeverse/lychee-action@v1.0.8 + with: + args: --verbose --no-progress **/*.md **/*.html + env: + GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} + - name: Fail if there were link errors + run: exit ${{ steps.lychee.outputs.exit_code }} + + # - name: Create Issue From File + # uses: peter-evans/create-issue-from-file@v2 + # with: + # title: Link Checker Report + # content-filepath: ./lychee/out.md + # labels: report, automated issue \ No newline at end of file From 90276c069112eaba76e46f882810655509a95fd1 Mon Sep 17 00:00:00 2001 From: Herman Slatman Date: Mon, 5 Jul 2021 20:28:24 +0200 Subject: [PATCH 2/2] Do not fail hard on link errors --- .github/workflows/links.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index 63e4249..981b91b 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -25,8 +25,8 @@ jobs: args: --verbose --no-progress **/*.md **/*.html env: GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - - name: Fail if there were link errors - run: exit ${{ steps.lychee.outputs.exit_code }} + #- name: Fail if there were link errors + # run: exit ${{ steps.lychee.outputs.exit_code }} # - name: Create Issue From File # uses: peter-evans/create-issue-from-file@v2