From 96a180cbf7b65191ad2df175ee9d3b775ace5f04 Mon Sep 17 00:00:00 2001 From: Edwin Kofler Date: Sun, 15 Oct 2023 16:41:36 -0700 Subject: [PATCH] Add check readme action --- .editorconfig | 5 ++++- .github/workflows/readme-check.yaml | 15 +++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/readme-check.yaml 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..384e2fb --- /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@v1'