Bump peter-evans/create-issue-from-file from b4f9ee0a9d4abbfc6986601d9b1a4f8f8e74c77e to 1c37a3538f1016517235b2ad3311d75bf0dd4a41 #393
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: 'Link Checker: All English' | |
# **What it does**: Renders the content of every page and check all internal links. | |
# **Why we have it**: To make sure all links connect correctly. | |
# **Who does it impact**: Docs content. | |
on: | |
workflow_dispatch: | |
merge_group: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
# Needed for the 'trilom/file-changes-action' action | |
pull-requests: read | |
# This allows a subsequently queued workflow run to interrupt previous runs | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
jobs: | |
check-links: | |
runs-on: ${{ fromJSON('["ubuntu-latest", "ubuntu-20.04-xl"]')[github.repository == 'github/docs-internal'] }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748 | |
- name: Setup node | |
uses: actions/setup-node@17f8bd926464a1afa4c6a11669539e9c1ba77048 | |
with: | |
node-version: '16.15.0' | |
cache: npm | |
- name: Install | |
run: npm ci | |
# Creates file "${{ env.HOME }}/files.json", among others | |
- name: Gather files changed | |
uses: trilom/file-changes-action@a6ca26c14274c33b15e6499323aac178af06ad4b | |
with: | |
fileOutput: 'json' | |
# For verification | |
- name: Show files changed | |
run: cat $HOME/files.json | |
- name: Link check (warnings, changed files) | |
env: | |
# Don't care about CDN caching image URLs | |
DISABLE_REWRITE_ASSET_URLS: true | |
run: | | |
# Note as of Aug 2022, we *don't* check external links | |
# on the pages you touched in the PR. We could enable that | |
# but it has the added risk of false positives blocking CI. | |
# We are using this script for the daily/nightly checker that | |
# checks external links too. Once we're confident it really works | |
# well, we can consider enabling it here on every content PR too. | |
./script/rendered-content-link-checker.js \ | |
--language en \ | |
--max 100 \ | |
--check-anchors \ | |
--check-images \ | |
--verbose \ | |
--list $HOME/files.json | |
- name: Link check (critical, all files) | |
env: | |
# Don't care about CDN caching image URLs | |
DISABLE_REWRITE_ASSET_URLS: true | |
run: | | |
./script/rendered-content-link-checker.js \ | |
--language en \ | |
--exit \ | |
--verbose \ | |
--check-images \ | |
--level critical |