diff --git a/.editorconfig b/.editorconfig index d63767c..3009579 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,6 +7,9 @@ charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true -[*.md] +[*.{md,yaml,yml}] indent_style = space indent_size = 2 + +[*.{yaml,yml}] +quote_type = single diff --git a/.github/workflows/readme-check.yaml b/.github/workflows/readme-check.yaml new file mode 100644 index 0000000..4e6ba1e --- /dev/null +++ b/.github/workflows/readme-check.yaml @@ -0,0 +1,15 @@ +name: 'Check README' +on: + pull_request: + push: + branches: + - 'main' + - 'ci' + workflow_dispatch: + +jobs: + check-readme: + runs-on: 'ubuntu-latest' + steps: + - name: 'Checks Links' + uses: 'fox-projects/check-organization-links-action@7d1f18a3fd438c86b54b1cadece8f22f6485ea6e'