From 629b4ee5be9bcc041a986e77ad2708d6c962b8d6 Mon Sep 17 00:00:00 2001 From: O957 <127630341+O957@users.noreply.github.com> Date: Mon, 15 Sep 2025 14:57:26 -0400 Subject: [PATCH 1/2] add typos spell checker workflow --- .github/workflows/typos.yml | 20 ++++++++++++++++++++ _typos.toml | 16 ++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 .github/workflows/typos.yml create mode 100644 _typos.toml diff --git a/.github/workflows/typos.yml b/.github/workflows/typos.yml new file mode 100644 index 0000000..64ae9ec --- /dev/null +++ b/.github/workflows/typos.yml @@ -0,0 +1,20 @@ +name: "Typos Checker" + +permissions: + contents: read + +on: + push: + branches: + - main + pull_request: + +jobs: + spelling: + name: "Use Typos To Check Spelling" + runs-on: ubuntu-latest + steps: + - name: "Checkout Code" + uses: actions/checkout@v5 + - name: "Spell Check Repository" + uses: crate-ci/typos@v1 \ No newline at end of file diff --git a/_typos.toml b/_typos.toml new file mode 100644 index 0000000..5bc6fae --- /dev/null +++ b/_typos.toml @@ -0,0 +1,16 @@ +[default] +extend-ignore-identifiers-re = [ + "AttributeID.*Supress.*", +] + +[default.extend-identifiers] +AttributeIDSupressMenu = "AttributeIDSupressMenu" + +[default.extend-words] +# words that should not be corrected +dot_acn = ".acn" +dot_fot = ".fot" +dot_ist = ".ist" + +[files] +extend-exclude = [] From 83dc828a9fca67a5737ca9f88426af93c4a99d50 Mon Sep 17 00:00:00 2001 From: O957 <127630341+O957@users.noreply.github.com> Date: Mon, 15 Sep 2025 15:08:09 -0400 Subject: [PATCH 2/2] fix the single typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 990ac82..8a8a4b8 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ flowchart LR C --> E(Waiting for Clarifications (Applicant)) E --> A F -->|Yes| G(DPG) - F -->|No| H(Inelligible) + F -->|No| H(Ineligible) classDef default font-variant:small-caps,font-family:courier,stroke:#333,color:#000; style A fill:#FBF7EF; style B fill:#FAC610;