respect all languages when looking for orphans (#33334)

This commit is contained in:
Peter Bengtsson 2022-12-08 03:00:54 +01:00 коммит произвёл GitHub
Родитель 55ea787add
Коммит 1e11855fb8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 34 добавлений и 6 удалений

40
.github/workflows/orphaned-assets-check.yml поставляемый
Просмотреть файл

@ -29,6 +29,20 @@ jobs:
run: |
rm -rf translations
- name: Checkout the zh-cn repo
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
with:
repository: github/docs-internal.zh-cn
token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
path: translations/zh-CN
- name: Checkout the ja-jp repo
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
with:
repository: github/docs-internal.ja-jp
token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
path: translations/ja-JP
- name: Checkout the es-es repo
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
with:
@ -43,19 +57,33 @@ jobs:
token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
path: translations/pt-BR
- name: Checkout the zh-cn repo
- name: Checkout the de-de repo
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
with:
repository: github/docs-internal.zh-cn
repository: github/docs-internal.de-de
token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
path: translations/zh-CN
path: translations/de-DE
- name: Checkout the ja-jp repo
- name: Checkout the fr-fr repo
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
with:
repository: github/docs-internal.ja-jp
repository: github/docs-internal.fr-fr
token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
path: translations/ja-JP
path: translations/fr-FR
- name: Checkout the ru-ru repo
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
with:
repository: github/docs-internal.ru-ru
token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
path: translations/ru-RU
- name: Checkout the ko-kr repo
uses: actions/checkout@dcd71f646680f2efd8db4afa5ad64fdcba30e748
with:
repository: github/docs-internal.ko-kr
token: ${{ secrets.DOCUBOT_READORG_REPO_WORKFLOW_SCOPES }}
path: translations/ko-KR
- name: Setup node
uses: actions/setup-node@17f8bd926464a1afa4c6a11669539e9c1ba77048