From a4b7d410f4d853d7bf98e4ca6dc198f6ea29bb8d Mon Sep 17 00:00:00 2001 From: Colin Kennedy Date: Sat, 26 Oct 2024 10:32:24 -0700 Subject: [PATCH] fix(urlchecker): Added README.md + CHANGELOG.md as a checker --- .github/workflows/urlchecker.yml | 13 ++++++++----- README.md | 2 +- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/urlchecker.yml b/.github/workflows/urlchecker.yml index 7a8d80a2..bcabb843 100644 --- a/.github/workflows/urlchecker.yml +++ b/.github/workflows/urlchecker.yml @@ -1,3 +1,5 @@ +# TODO: (you) Make sure to update your file_types below to whatever makes sense for you. + name: URLChecker on: @@ -20,33 +22,34 @@ jobs: uses: urlstechie/urlchecker-action@master with: subfolder: doc - # TODO: Check if I can just check all file types with an empty string for glob file_types: .json,.lua,.md,.txt,.vim,.yml - name: urlcheck - lua directory uses: urlstechie/urlchecker-action@master with: subfolder: lua - # TODO: Check if I can just check all file types with an empty string for glob file_types: .json,.lua,.md,.txt,.vim,.yml - name: urlcheck - plugin directory uses: urlstechie/urlchecker-action@master with: subfolder: plugin - # TODO: Check if I can just check all file types with an empty string for glob file_types: .json,.lua,.md,.txt,.vim,.yml - name: urlcheck - scripts directory uses: urlstechie/urlchecker-action@master with: subfolder: scripts - # TODO: Check if I can just check all file types with an empty string for glob file_types: .json,.lua,.md,.txt,.vim,.yml - name: urlcheck - spec directory uses: urlstechie/urlchecker-action@master with: subfolder: spec - # TODO: Check if I can just check all file types with an empty string for glob file_types: .json,.lua,.md,.txt,.vim,.yml + + - name: urlcheck - CHANGELOG.md + README.md + uses: urlstechie/urlchecker-action@master + with: + subfolder: . + include_files: CHANGELOG.md,README.md diff --git a/README.md b/README.md index 3ff39987..f18ed067 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ A template repository used to create Neovim plugins. - Auto-completes your commands at any cursor position - No external dependencies[*](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/wiki/External-Dependencies-Disclaimer) - [LuaCATS](https://luals.github.io/wiki/annotations/) annotations and type-hints, everywhere -- [RSS feed support](tracking-updates) +- [RSS feed support](https://github.com/ColinKennedy/nvim-best-practices-plugin-template/commits/main/doc/news.txt.atom) - Built-in logging to stdout / files - Unittests use the full power of native [busted](https://github.com/lunarmodules/busted) - Automated testing matrix supports 6 Neovim/OS combinations