Auto lint content #30
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
# This is a basic workflow to help you get started with Actions | |
name: Auto lint content | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow at a specific time | |
schedule: | |
- cron: '00 20 1 * *' | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# This workflow contains a single job called "lint-pr" | |
lint-pr: | |
# Check if the event is not triggered by a fork | |
if: github.repository_owner == 'mendix' | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
# Installs NodeJS v20 in runner environment (upgraded from v16 in Feb 2024) | |
- name: Install NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
# Installs linting tool via npm | |
# Look at using the related GitHub action here: https://github.com/DavidAnson/markdownlint-cli2-action | |
- name: Install markdown linter | |
run: npm install markdownlint-cli2 --global | |
# Runs linter on content, rules specified in yaml config file | |
# Adds the terminal messages to tmp.log file | |
- name: Run markdownlint-cli2 | |
run: | | |
markdownlint-cli2 --config ".markdownlint-cli2.yaml" "content/en/docs/**/*.md" 2>&1 | tee ./tmp.log | |
# Dumps tmp.log contents into env variable, to use for PR body text | |
- name: Grab markdownlint log | |
id: echo-log | |
run: | | |
chmod +x ./tmp.log | |
VER=$(cat << EOF ./tmp.log) | |
echo "VER<<EOF" >> $GITHUB_ENV | |
echo "$VER" >> $GITHUB_ENV | |
echo "EOF" >> $GITHUB_ENV | |
# Creates PR for linted content changes - needs version > 4 for NodeJS 20 | |
- name: Create pull request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
commit-message: Run markdownlint-cli2 on docs to find (and correct) linting errors. | |
title: '[Auto] Lint docs' | |
body: | | |
${{ env.VER }} | |
branch: lint-docs | |
committer: MarkvanMents <[email protected]> | |
assignees: MarkvanMents | |
reviewers: MarkvanMents | |
labels: Internal WIP | |
add-paths: | | |
content/en/docs/**/*.md |