2022-01-21 17:19:56 +00:00
|
|
|
---
|
2022-01-20 08:32:09 +00:00
|
|
|
name: Format + Docs Workflow
|
|
|
|
on:
|
|
|
|
push:
|
2022-01-21 17:19:56 +00:00
|
|
|
paths: ["docs/**", "**.md", "**.toml", "**.js", "**.json", "**.ts"]
|
2022-01-20 08:32:09 +00:00
|
|
|
pull_request:
|
2022-01-21 17:19:56 +00:00
|
|
|
paths: ["docs/**", "**.md", "**.toml", "**.js", "**.json", "**.ts"]
|
2022-01-20 08:32:09 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
# Run the dprint code formatter for documentation
|
|
|
|
dprint:
|
|
|
|
name: Dprint [Docs Formatter]
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Setup | Checkout
|
|
|
|
uses: actions/checkout@v2.4.0
|
|
|
|
- name: Docs | Format
|
2022-01-21 16:26:13 +00:00
|
|
|
uses: dprint/check@v2.0
|
|
|
|
|
|
|
|
# If this is not a Crowdin PR, block changes to translated documentation
|
|
|
|
block-crowdin:
|
|
|
|
name: Block Translated Changes
|
|
|
|
runs-on: ubuntu-latest
|
2022-01-21 17:19:56 +00:00
|
|
|
if: ${{ github.event_name == 'pull_request' }}
|
2022-01-21 16:26:13 +00:00
|
|
|
steps:
|
|
|
|
- name: Prevent File Change
|
|
|
|
uses: xalvarez/prevent-file-change-action@v1.2.0
|
2022-01-25 08:56:07 +00:00
|
|
|
if: ${{ github.event.pull_request.head.ref != 'i18n_master' }}
|
2022-01-21 16:26:13 +00:00
|
|
|
with:
|
|
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
pattern: docs/[a-z][a-z][a-z]?-[A-Z][A-Z]?/.*
|