name: weekly-docs # runs every monday at 9 am on: schedule: - cron: "0 9 * * 1" workflow_dispatch: # allows to run manually for testing pull_request: branches: - main paths: - "docs/**" permissions: contents: read jobs: prepare-linkspector-browser: # later versions of Ubuntu have disabled unprivileged user namespaces, which are required by the action runs-on: ubuntu-22.04 permissions: contents: read env: CHROME_BUILD_ID: "145.0.7632.77" outputs: browser-cache-key: ${{ steps.browser-versions.outputs.cache-key }} chrome-path: ${{ steps.install-chrome.outputs.path }} steps: - name: Harden Runner uses: step-security/harden-runner@b09bb98e06d4d774595224525879c09bc6e98c40 # v2.20.1 with: egress-policy: audit - name: Checkout uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Set up mise tools uses: ./.github/actions/setup-mise with: install-args: "node npm:@puppeteer/browsers" - name: Get browser versions id: browser-versions run: | set -euo pipefail installer_version="$(mise current npm:@puppeteer/browsers)" echo "cache-key=puppeteer-${RUNNER_OS}-${RUNNER_ARCH}-browsers-${installer_version}-chrome-${CHROME_BUILD_ID}" >> "$GITHUB_OUTPUT" - name: Restore Puppeteer browser cache uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/.cache/puppeteer key: ${{ steps.browser-versions.outputs.cache-key }} - name: Install Linkspector Chrome id: install-chrome run: | set -euo pipefail chrome_path="$(browsers install "chrome@${CHROME_BUILD_ID}" --path "${HOME}/.cache/puppeteer" --format '{{path}}')" echo "path=${chrome_path}" >> "$GITHUB_OUTPUT" check-docs: needs: prepare-linkspector-browser # later versions of Ubuntu have disabled unprivileged user namespaces, which are required by the action runs-on: ubuntu-22.04 permissions: pull-requests: write # required to post PR review comments by the action steps: - name: Harden Runner uses: step-security/harden-runner@b09bb98e06d4d774595224525879c09bc6e98c40 # v2.20.1 with: egress-policy: audit - name: Checkout uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Rewrite same-repo links for PR branch if: github.event_name == 'pull_request' env: HEAD_SHA: ${{ github.event.pull_request.head.sha }} run: | # Rewrite same-repo blob/tree main links to the PR head SHA # so that files or directories introduced in the PR are # reachable during link checking. { echo 'replacementPatterns:' echo " - pattern: \"https://github.com/coder/coder/blob/main/\"" echo " replacement: \"https://github.com/coder/coder/blob/${HEAD_SHA}/\"" echo " - pattern: \"https://github.com/coder/coder/tree/main/\"" echo " replacement: \"https://github.com/coder/coder/tree/${HEAD_SHA}/\"" } >> .github/.linkspector.yml # TODO: Remove this workaround once action-linkspector sets # package-manager-cache: false in its internal setup-node step. # See: https://github.com/UmbrellaDocs/action-linkspector/issues/54 - name: Enable corepack and create pnpm store run: | corepack enable pnpm mkdir -p "$(pnpm store path --silent)" - name: Restore Puppeteer browser cache uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: path: ~/.cache/puppeteer key: ${{ needs.prepare-linkspector-browser.outputs.browser-cache-key }} - name: Check Markdown links uses: umbrelladocs/action-linkspector@568ec8d29fa92b31fd9ea5381e155c51e922af83 # v1.5.5 id: markdown-link-check # checks all markdown files from /docs including all subfolders env: # Use the Chrome build prepared from mise-pinned Puppeteer instead # of letting linkspector download a mutable browser at runtime. # See: https://github.com/UmbrellaDocs/action-linkspector/issues/62 PUPPETEER_EXECUTABLE_PATH: ${{ needs.prepare-linkspector-browser.outputs.chrome-path }} with: # On PRs, use github-pr-review for inline comments. On schedule/dispatch, # use local so reviewdog actually reports failures instead of silently # exiting 0 (github-pr-review requires a PR context). reporter: ${{ github.event_name == 'pull_request' && 'github-pr-review' || 'local' }} config_file: ".github/.linkspector.yml" fail_on_error: "true" filter_mode: ${{ github.event_name == 'pull_request' && 'file' || 'nofilter' }} - name: Send Slack notification if: failure() && github.event_name != 'pull_request' run: | curl \ -X POST \ -H 'Content-type: application/json' \ -d '{"text":":warning: *Broken links found in the documentation.*\nPlease check the logs: '"${LOGS_URL}"'"}' "${{ secrets.DOCS_LINK_SLACK_WEBHOOK }}" echo "Sent Slack notification" env: LOGS_URL: https://github.com/coder/coder/actions/runs/${{ github.run_id }}