Reschedule community meeting #1026
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check Links | |
on: | |
repository_dispatch: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
linkChecker: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Check unrendered links | |
id: lychee_unrendered | |
uses: lycheeverse/lychee-action@7cd0af4c74a61395d455af97419279d86aafaede # v2.0.2 | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
with: | |
fail: true | |
debug: false | |
args: --no-progress --include-fragments --github-token ${{secrets.GITHUB_TOKEN}} --config config/lychee.toml -E content/ | |
# Deactivated. The --include-fragments flag is causing failures because rendered links | |
# have a trailing '#' which is probably a result of the link style change plus the new | |
# custom link renderer in layouts/_default/_markup_render-link.html. | |
# - name: Setup Hugo | |
# uses: peaceiris/actions-hugo@16361eb4acea8698b220b76c0d4e84e1fd22c61d # v2.6.0 | |
# with: | |
# hugo-version: latest | |
# extended: true | |
# - name: Waiting for Netlify Preview | |
# uses: jakepartusch/wait-for-netlify-action@f1e137043864b9ab9034ae3a5adc1c108e3f1a48 # v1.4 | |
# id: wait-for-netflify-preview | |
# with: | |
# site_name: kyverno | |
# max_timeout: 120 | |
# - name: Install site dependencies | |
# run: npm install --save-dev autoprefixer && npm install --save-dev postcss-cli && npm install -D postcss | |
# - name: Build site with Hugo | |
# run: hugo --minify -b ${{ steps.wait-for-netflify-preview.outputs.url }} | |
# - name: Check rendered links | |
# id: lychee_rendered | |
# uses: lycheeverse/lychee-action@7cd0af4c74a61395d455af97419279d86aafaede # v2.0.2 | |
# env: | |
# GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
# with: | |
# fail: true | |
# debug: false | |
# args: --no-progress --include-fragments --github-token ${{secrets.GITHUB_TOKEN}} -c lychee.toml -E public | |
# - name: Create Issue From File | |
# if: steps.lychee.outputs.exit_code != 0 | |
# uses: peter-evans/create-issue-from-file@v3 | |
# with: | |
# title: Link Checker Report | |
# content-filepath: ./lychee/out.md | |
# labels: report, automated issue |