diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 96f737d..3696eba 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,3 +1,3 @@ # Every request must be reviewed and accepted by: -* @felangel @jorgecoca \ No newline at end of file +* @felangel @renancaraujo @wolfenrain \ No newline at end of file diff --git a/.github/cspell.json b/.github/cspell.json new file mode 100644 index 0000000..1b78898 --- /dev/null +++ b/.github/cspell.json @@ -0,0 +1,20 @@ +{ + "version": "0.2", + "$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/main/cspell.schema.json", + "dictionaries": ["vgv_allowed", "vgv_forbidden"], + "dictionaryDefinitions": [ + { + "name": "vgv_allowed", + "path": "https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/allowed.txt", + "description": "Allowed VGV Spellings" + }, + { + "name": "vgv_forbidden", + "path": "https://raw.githubusercontent.com/verygoodopensource/very_good_dictionaries/main/forbidden.txt", + "description": "Forbidden VGV Spellings" + } + ], + "useGitignore": true, + "words": [ + ] +} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8f5f1f3..1be0056 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -53,3 +53,11 @@ jobs: with: path: './fixtures/lcov.95.info' exclude: '**/whatever.dart **/*_observer.dart **/does_not_matter.dart' + + spell-check: + uses: VeryGoodOpenSource/very_good_workflows/.github/workflows/spell_check.yml@v1 + with: + includes: | + **/*.md + .*/**/*.md + modified_files_only: false