Create content auto-fix PR #4
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
node scripts/update-moved-file-links.js | |
- name: Create PR with only fixable issues | |
if: success() | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
commit-message: "chore: auto-fix Markdownlint, Prettier, front-matter, redirects 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 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 }} |