[PR #5922] [MERGED] ci: spelling: update to 0.0.16a; update advice #26532

Open
opened 2026-01-31 09:16:39 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/microsoft/terminal/pull/5922
Author: @jsoref
Created: 5/15/2020
Status: Merged
Merged: 5/28/2020
Merged by: @zadjii-msft

Base: masterHead: spell-check


📝 Commits (1)

  • 78df00d ci: spelling: update to 0.0.16a; update advice

📊 Changes

11 files changed (+40 additions, -79 deletions)

View changed files

📝 .github/actions/spell-check/advice.txt (+13 -5)
📝 .github/actions/spell-check/dictionary/apis.txt (+4 -0)
📝 .github/actions/spell-check/dictionary/names.txt (+3 -0)
📝 .github/actions/spell-check/excludes.txt (+1 -0)
.github/actions/spell-check/expect/README.md (+13 -0)
📝 .github/actions/spell-check/expect/alphabet.txt (+1 -1)
📝 .github/actions/spell-check/expect/expect.txt (+1 -64)
📝 .github/actions/spell-check/expect/web.txt (+0 -0)
📝 .github/actions/spell-check/patterns/patterns.txt (+3 -1)
.github/actions/spell-check/whitelist/README.md (+0 -7)
📝 .github/workflows/spelling.yml (+1 -1)

📄 Description

Summary of the Pull Request

Updates the check spelling action to 0.0.16-a

  • update advice -- sample -- I really do encourage others to adjust it as desired
  • rename expect (there are consumers who were not a fan of the whitelist nomenclature)
  • prune stale items
  • some patterns improvements to reduce the number of items in expect

⚠️ Anyone with an inflight addition of a new file to the whitelist directory will be moderately unhappy as the action would only use items from there if it didn't find expect (and this PR includes the rename).

References

PR Checklist

  • Closes #xxx
  • CLA signed. If not, go over here and sign the CLA
  • Tests added/passed
  • Requires documentation to be updated
  • I've discussed this with core contributors already. If not checked, I'm ready to accept this work might be rejected in favor of a different grand plan. Issue number where discussion took place: #xxx

Detailed Description of the Pull Request / Additional comments

Runs should be ~30s faster.

I was hoping to be able to offer the ability to talk to the bot, but sadly that feature is still not quite ready -- and I suspect that I may want to let projects opt in/out of that feature.

Validation Steps Performed

The commands were never cmd/psh friendly. This iteration is designed to make it easier for a bot to parse and eventually do the work in response to a GitHub request, sadly that feature is behind schedule.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/microsoft/terminal/pull/5922 **Author:** [@jsoref](https://github.com/jsoref) **Created:** 5/15/2020 **Status:** ✅ Merged **Merged:** 5/28/2020 **Merged by:** [@zadjii-msft](https://github.com/zadjii-msft) **Base:** `master` ← **Head:** `spell-check` --- ### 📝 Commits (1) - [`78df00d`](https://github.com/microsoft/terminal/commit/78df00dcf6cc7b81ffe2f604881e20552d3c94be) ci: spelling: update to 0.0.16a; update advice ### 📊 Changes **11 files changed** (+40 additions, -79 deletions) <details> <summary>View changed files</summary> 📝 `.github/actions/spell-check/advice.txt` (+13 -5) 📝 `.github/actions/spell-check/dictionary/apis.txt` (+4 -0) 📝 `.github/actions/spell-check/dictionary/names.txt` (+3 -0) 📝 `.github/actions/spell-check/excludes.txt` (+1 -0) ➕ `.github/actions/spell-check/expect/README.md` (+13 -0) 📝 `.github/actions/spell-check/expect/alphabet.txt` (+1 -1) 📝 `.github/actions/spell-check/expect/expect.txt` (+1 -64) 📝 `.github/actions/spell-check/expect/web.txt` (+0 -0) 📝 `.github/actions/spell-check/patterns/patterns.txt` (+3 -1) ➖ `.github/actions/spell-check/whitelist/README.md` (+0 -7) 📝 `.github/workflows/spelling.yml` (+1 -1) </details> ### 📄 Description <!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Updates the check spelling action to [0.0.16-a](https://github.com/check-spelling/check-spelling/releases/tag/0.0.16-alpha) * update advice -- [sample](https://github.com/jsoref/terminal/commit/57fc13f6c6fa0a79a06acb94de5005904a2e1222#commitcomment-39489723) -- I really do encourage others to adjust it as desired * rename `expect` (there are consumers who were not a fan of the `whitelist` nomenclature) * prune stale items * some `patterns` improvements to reduce the number of items in `expect` <!-- Other than the issue solved, is this relevant to any other issues/existing PRs? --> :warning: Anyone with an inflight addition of a new file to the `whitelist` directory will be moderately unhappy as the action would only use items from there if it didn't find `expect` (and this PR includes the rename). ## References <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist * [ ] Closes #xxx * [x] CLA signed. If not, go over [here](https://cla.opensource.microsoft.com/microsoft/Terminal) and sign the CLA * [ ] Tests added/passed * [ ] Requires documentation to be updated * [ ] I've discussed this with core contributors already. If not checked, I'm ready to accept this work might be rejected in favor of a different grand plan. Issue number where discussion took place: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Runs should be ~30s faster. I was hoping to be able to offer the ability to talk to the bot, but sadly that feature is still not quite ready -- and I suspect that I may want to let projects opt in/out of that feature. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed * I added a commit with misspellings: https://github.com/jsoref/terminal/commit/57fc13f6c6fa0a79a06acb94de5005904a2e1222 ❌ and ran the command it suggested (in bash). * The commit [itself passes its own testing](https://github.com/jsoref/terminal/commit/78df00dcf6cc7b81ffe2f604881e20552d3c94be) ✔️ The commands were never `cmd`/`psh` friendly. This iteration is designed to make it easier for a bot to parse and eventually do the work in response to a GitHub request, sadly that feature is behind schedule. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-31 09:16:39 +00:00
Sign in to join this conversation.
No Label pull-request
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#26532