forked from mdn/translated-content
-
Notifications
You must be signed in to change notification settings - Fork 0
113 lines (99 loc) · 4.51 KB
/
Copy pathauto-cleanup-bot.yml
File metadata and controls
113 lines (99 loc) · 4.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
# This is a port of the equivalent workflow in mdn/content.
# See https://github.com/mdn/content/blob/main/.github/workflows/auto-cleanup-bot.yml
name: Create content auto-fix PR
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
permissions: {}
jobs:
fix:
if: github.repository == 'mdn/translated-content'
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
lang:
- es
- fr
- ja
- ko
- pt-br
- ru
- zh-cn
- zh-tw
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- name: Checkout (content)
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
repository: mdn/content
path: mdn/content
persist-credentials: false
- name: Setup Node.js environment
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: mdn/content/.nvmrc
package-manager-cache: false
- name: Install
run: npm ci
env:
# https://github.com/microsoft/vscode-ripgrep#github-api-limit-note
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install for mdn/content
working-directory: ${{ github.workspace }}/mdn/content
run: npm ci
env:
# https://github.com/microsoft/vscode-ripgrep#github-api-limit-note
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Fix flaws
env:
CONTENT_ROOT: ${{ github.workspace }}/mdn/content/files
CONTENT_TRANSLATED_ROOT: ${{ github.workspace }}/files
# Used by the `rari` cli to avoid rate limiting issues
# when fetching the latest releases info from the GitHub API.
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
working-directory: ${{ github.workspace }}/mdn/content
run: |
npm run content fix-flaws -- --locale "${{ matrix.lang }}"
- name: Lint Markdown files
run: |
npx markdownlint-cli2 --fix "**/${{ matrix.lang }}/**/*.md"
node ./scripts/check-url-locale.js --fix "files/${{ matrix.lang }}"
ls -d 2>/dev/null "files/${{ matrix.lang }}" "docs/${{ matrix.lang }}" | xargs npx autocorrect --fix
npx prettier -w "**/${{ matrix.lang }}/**/*.md"
cd ${{ github.workspace }}/mdn/content && npm run fix:fm -- --config-file ${{ github.workspace }}/.front-matter-config.json "${{ github.workspace }}/files/${{ matrix.lang }}"
- name: Create PR with only fixable issues
if: success()
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
with:
commit-message: "${{ matrix.lang }}: auto-fix content issues"
branch: content-autofix-${{ matrix.lang }}
title: "[${{ matrix.lang }}] auto-fix content issues"
author: mdn-bot <108879845+mdn-bot@users.noreply.github.com>
committer: mdn-bot <108879845+mdn-bot@users.noreply.github.com>
body: |
This PR was generated by [this run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) of the [`auto-cleanup-bot`](https://github.com/${{ github.repository }}/blob/${{ github.ref_name }}/.github/workflows/auto-cleanup-bot.yml) workflow.
All issues were auto-fixed.
labels: |
automated pr
token: ${{ secrets.AUTOMERGE_TOKEN }}
- name: Create PR with notice on unfixed issues
if: failure()
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
with:
commit-message: "${{ matrix.lang }}: auto-fix content issues"
branch: content-autofix-${{ matrix.lang }}
title: "[${{ matrix.lang }}] auto-fix content issues"
author: mdn-bot <108879845+mdn-bot@users.noreply.github.com>
committer: mdn-bot <108879845+mdn-bot@users.noreply.github.com>
body: |
This PR was generated by the [`auto-cleanup-bot`](https://github.com/${{ github.repository }}/blob/${{ github.ref_name }}/.github/workflows/auto-cleanup-bot.yml) workflow.
Auto-fix was run, but additional issues found.
Please review the [run log](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}).
labels: |
automated pr
token: ${{ secrets.AUTOMERGE_TOKEN }}