From c3b939cba47938093e26cb62dd0dc475db1900b4 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 | 7 +++++++ 2 files changed, 11 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..1df28ec --- /dev/null +++ b/.github/workflows/readme-check.yaml @@ -0,0 +1,7 @@ +on: + - "push" + +jobs: + check-readme: + name: "Check README" + uses: "fox-projects/check-organization-links"