From a1178559849e34dc9bcab95d6606d999e32f5dfb 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 | 13 +++++++++++++ 2 files changed, 17 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..6e3dc77 --- /dev/null +++ b/.github/workflows/readme-check.yaml @@ -0,0 +1,13 @@ +name: 'Check README' +on: + pull_request: + push: + branches: + - 'main' + workflow_dispatch: + +jobs: + check-readme: + runs-on: 'ubuntu-latest' + steps: + - uses: 'fox-projects/check-organization-links-action'