From fd21b6f4048d1beb95c793f73cac2bc1085802bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Feb 2026 14:44:14 +0000 Subject: [PATCH 1/3] Bump PSModule/Process-PSModule/.github/workflows/workflow.yml Bumps [PSModule/Process-PSModule/.github/workflows/workflow.yml](https://github.com/psmodule/process-psmodule) from 5.4.2 to 5.4.3. - [Release notes](https://github.com/psmodule/process-psmodule/releases) - [Commits](https://github.com/psmodule/process-psmodule/compare/a15249813c1d7e1a0e4faa2c936fe4978f03845d...60bdf8a5a4c92c53fcf2a8d23f7d5f5c93e6864e) --- updated-dependencies: - dependency-name: PSModule/Process-PSModule/.github/workflows/workflow.yml dependency-version: 5.4.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/Process-PSModule.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Process-PSModule.yml b/.github/workflows/Process-PSModule.yml index 8fef2c6..95c66fa 100644 --- a/.github/workflows/Process-PSModule.yml +++ b/.github/workflows/Process-PSModule.yml @@ -27,6 +27,6 @@ permissions: jobs: Process-PSModule: - uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@a15249813c1d7e1a0e4faa2c936fe4978f03845d # v5.4.2 + uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@60bdf8a5a4c92c53fcf2a8d23f7d5f5c93e6864e # v5.4.3 secrets: APIKey: ${{ secrets.APIKey }} From ae87a17847c57dc92fc090901d386c34ce9f5a84 Mon Sep 17 00:00:00 2001 From: Copilot <198982749+Copilot@users.noreply.github.com> Date: Thu, 26 Feb 2026 08:38:32 +0100 Subject: [PATCH 2/3] Exclude FontsData.json from codespell linter (#170) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Codespell was flagging legitimate Google Font names in `src/FontsData.json` as misspellings (e.g. `Arizonia`, `Buda`, `Vai`, `Playwrite`, `Rouge`). ## Changes - **`.github/linters/.codespellrc`**: Added `./src/FontsData.json` to the `skip` list to prevent false positives on font names that are intentional proper nouns, not typos. ```ini [codespell] skip = ./.github/linters,./src/FontsData.json ignore-words-list = afterall ``` --- 🔒 GitHub Advanced Security automatically protects Copilot coding agent pull requests. You can protect all pull requests by enabling Advanced Security for your repositories. [Learn more about Advanced Security.](https://gh.io/cca-advanced-security) --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: MariusStorhaug <17722253+MariusStorhaug@users.noreply.github.com> --- .github/linters/.codespellrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/linters/.codespellrc b/.github/linters/.codespellrc index 351e9a0..c7557c2 100644 --- a/.github/linters/.codespellrc +++ b/.github/linters/.codespellrc @@ -1,3 +1,3 @@ [codespell] -skip = ./.github/linters +skip = ./.github/linters,./src/FontsData.json ignore-words-list = afterall From dd28200a1345cfc375311b4a76223b6ae3752567 Mon Sep 17 00:00:00 2001 From: Marius Storhaug Date: Thu, 26 Feb 2026 08:56:57 +0100 Subject: [PATCH 3/3] =?UTF-8?q?=E2=9A=99=EF=B8=8F=20[Maintenance]:=20Updat?= =?UTF-8?q?e=20codespell=20configuration=20to=20refine=20ignore=20words=20?= =?UTF-8?q?list?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/linters/.codespellrc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/linters/.codespellrc b/.github/linters/.codespellrc index c7557c2..1c7dac0 100644 --- a/.github/linters/.codespellrc +++ b/.github/linters/.codespellrc @@ -1,3 +1,3 @@ [codespell] -skip = ./.github/linters,./src/FontsData.json -ignore-words-list = afterall +skip = ./.github/linters +ignore-words-list = afterall,arizonia,buda,vai,playwrite,rouge