Skip to content

Create content auto-fix PR #169

Create content auto-fix PR

Create content auto-fix PR #169

name: Create content auto-fix PR
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
# No GITHUB_TOKEN permissions, as we only use it to increase API limit.
# We use AUTOMERGE_TOKEN to create the PR.
permissions: {}
jobs:
fix:
if: github.repository == 'mdn/content'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
persist-credentials: false
- name: Setup Node.js environment
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version-file: ".nvmrc"
package-manager-cache: false
- name: Install
run: npm ci
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LEFTHOOK: 0
- name: Lint markdown files
run: |
npm run content fix-flaws
npm run fix:md
npm run fix:fm
node scripts/sort_and_unique_file_lines.js .vscode/dictionaries
env:
# 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 }}
- name: Create PR with only fixable issues
if: success()
uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7.0.9
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]>
committer: mdn-bot <[email protected]>
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@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7.0.9
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]>
committer: mdn-bot <[email protected]>
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 }}