This commit is contained in:
Evan Bonsignori 2022-12-02 13:59:40 -08:00 коммит произвёл GitHub
Родитель 3575099b70
Коммит 468a0323fa
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
8 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

Просмотреть файл

Просмотреть файл

Просмотреть файл

Просмотреть файл

2
.github/workflows/link-check-daily.yml поставляемый
Просмотреть файл

@ -82,7 +82,7 @@ jobs:
# treat it as a warning and not as a broken link.
EXTERNAL_SERVER_ERRORS_AS_WARNINGS: true
timeout-minutes: 30
run: node .github/actions/rendered-content-link-checker.js
run: node .github/actions-scripts/rendered-content-link-checker.js
- name: Upload artifact(s)
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8

4
.github/workflows/link-check-on-pr.yml поставляемый
Просмотреть файл

@ -85,7 +85,7 @@ jobs:
# GITHUB_TOKEN: ${{ secrets.DOCS_BOT_FR }}
# SHOULD_COMMENT: true
# CREATE_REPORT: false
# run: node .github/actions/rendered-content-link-checker.js
# run: node .github/actions-scripts/rendered-content-link-checker.js
- name: Link check all pages (internal links only)
id: all_links
@ -101,7 +101,7 @@ jobs:
# we're filtering on anyway once the list of all pages has
# been loaded.
ENABLED_LANGUAGES: en
run: node .github/actions/rendered-content-link-checker.js
run: node .github/actions-scripts/rendered-content-link-checker.js
- name: Upload artifact(s)
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8

Просмотреть файл

@ -10,7 +10,7 @@
import fs from 'fs'
import path from 'path'
import { program, Option, InvalidArgumentError } from 'commander'
import renderedContentLinkChecker from '../.github/actions/rendered-content-link-checker.js'
import renderedContentLinkChecker from '../.github/actions-scripts/rendered-content-link-checker.js'
import { getCoreInject, getUploadArtifactInject } from './helpers/action-injections.js'
import github from './helpers/github.js'