-
Notifications
You must be signed in to change notification settings - Fork 22.5k
58 lines (50 loc) · 1.8 KB
/
auto-cleanup-bot.yml
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
name: Create content auto-fix PR
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
jobs:
fix:
if: github.repository == 'mdn/content'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: yarn
- name: Install all yarn packages
run: yarn --frozen-lockfile
env:
# https://github.com/microsoft/vscode-ripgrep#github-api-limit-note
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HUSKY: 0
- name: Lint markdown files
run: |
yarn content fix-flaws
yarn fix:md
yarn fix:fm
- name: Create PR with only fixable issues
if: success()
uses: peter-evans/create-pull-request@v5
with:
commit-message: "chore: auto-fix Markdownlint, Prettier, and front-matter issues"
branch: markdownlint-auto-cleanup
title: "fix: auto-cleanup by bot"
author: mdn-bot <[email protected]>
body: |
All issues auto-fixed
token: ${{ secrets.AUTOMERGE_TOKEN }}
- name: Create PR with notice on unfixed issues
if: failure()
uses: peter-evans/create-pull-request@v5
with:
commit-message: "chore: auto-fix Markdownlint, Prettier, and front-matter issues"
branch: markdownlint-auto-cleanup
title: "fix: auto-cleanup by bot"
author: mdn-bot <[email protected]>
body: |
Auto-fix was run, but additional issues found.
Please review the run log: https://github.com/mdn/content/actions/runs/${{ github.run_id }}
token: ${{ secrets.AUTOMERGE_TOKEN }}