Reverse proxy: Update config to set HTTP version as required for WebS… #1531
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: Checking Markdown For Errors | |
# https://github.blog/2020-08-03-github-actions-improvements-for-fork-and-pull-request-workflows/ | |
on: | |
push: | |
branches: | |
- main | |
- 2.5.x | |
tags-ignore: | |
- '**' | |
pull_request: | |
branches: | |
- main | |
types: | |
- open | |
- synchronize | |
- reopen | |
jobs: | |
markdownlint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v3 | |
- name: Run markdownlint-cli | |
uses: nosborn/github-action-markdown-cli@v3 | |
with: | |
files: . | |
config_file: ".github/.markdownlint.yaml" |