Skip to content

Conversation

@psanogo
Copy link

@psanogo psanogo commented Dec 3, 2025

Summary of the Pull Request

References and Relevant Issues

Detailed Description of the Pull Request / Additional comments

Validation Steps Performed

PR Checklist

  • Closes #xxx
  • Tests added/passed
  • Documentation updated
    • If checked, please file a pull request on our docs repo and link it here: #xxx
  • Schema updated (if necessary)

@@ -0,0 +1,66 @@
# This workflow uses actions that are not certified by GitHub.

Check failure

Code scanning / check-spelling

Check File Path Error

ossf is not a recognized word. (check-file-path)
@@ -0,0 +1,66 @@
# This workflow uses actions that are not certified by GitHub.

Check failure

Code scanning / check-spelling

Check File Path Error

slsa is not a recognized word. (check-file-path)
# separate terms of service, privacy policy, and support
# documentation.

# This workflow lets you generate SLSA provenance file for your project.

Check failure

Code scanning / check-spelling

Unrecognized Spelling Error

SLSA is not a recognized word. (unrecognized-spelling)

# This workflow lets you generate SLSA provenance file for your project.
# The generation satisfies level 3 for the provenance requirements - see https://slsa.dev/spec/v0.1/requirements
# The project is an initiative of the OpenSSF (openssf.org) and is developed at

Check failure

Code scanning / check-spelling

Unrecognized Spelling Error

openssf is not a recognized word. (unrecognized-spelling)
# The project is an initiative of the OpenSSF (openssf.org) and is developed at
# https://github.com/slsa-framework/slsa-github-generator.
# The provenance file can be verified using https://github.com/slsa-framework/slsa-verifier.
# For more information about SLSA and how it improves the supply-chain, visit slsa.dev.

Check failure

Code scanning / check-spelling

Unrecognized Spelling Error

SLSA is not a recognized word. (unrecognized-spelling)
actions: read # To read the workflow path.
id-token: write # To sign the provenance.
contents: write # To add assets to a release.
uses: slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v1.4.0

Check failure

Code scanning / check-spelling

Unrecognized Spelling Error

slsa is not a recognized word. (unrecognized-spelling)
actions: read # To read the workflow path.
id-token: write # To sign the provenance.
contents: write # To add assets to a release.
uses: slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v1.4.0

Check failure

Code scanning / check-spelling

Unrecognized Spelling Error

slsa is not a recognized word. (unrecognized-spelling)
actions: read # To read the workflow path.
id-token: write # To sign the provenance.
contents: write # To add assets to a release.
uses: slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v1.4.0

Check failure

Code scanning / check-spelling

Unrecognized Spelling Error

slsa is not a recognized word. (unrecognized-spelling)
- name: Generate subject for provenance
id: hash
run: |
set -euo pipefail

Check warning

Code scanning / check-spelling

Candidate Pattern Warning

actions: read # To read the workflow path.
id-token: write # To sign the provenance.
contents: write # To add assets to a release.
uses: slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v1.4.0

Check warning

Code scanning / check-spelling

Candidate Pattern Warning

Line matches candidate pattern \\buses:\\s+[-\\w.]+/[-\\w./]+@[-\\w.]+ (candidate-pattern)
@github-actions
Copy link

github-actions bot commented Dec 3, 2025

@check-spelling-bot Report

🔴 Please review

See the 📂 files view, the 📜action log, or 📝 job summary for details.

Unrecognized words (5)

euo
openssf
ossf
pipefail
slsa

To accept these unrecognized words as correct, you could run the following commands

... in a clone of the git@github.com:psanogo/terminal.git repository
on the main branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/v0.0.25/apply.pl' |
perl - 'https://github.com/microsoft/terminal/actions/runs/19903833340/attempts/1' &&
git commit -m 'Update check-spelling metadata'
Pattern suggestions ✂️ (2)

You could add these patterns to .github/actions/spelling/patterns/20998f762838f70152a7d1b905e6191f45fa7592.txt:

# Automatically suggested patterns

# hit-count: 1 file-count: 1
# GitHub actions
\buses:\s+[-\w.]+/[-\w./]+@[-\w.]+

# hit-count: 1 file-count: 1
# set arguments
\b(?:bash|sh|set)(?:\s+[-+][abefimouxE]{1,2})*\s+[-+][abefimouxE]{3,}(?:\s+[-+][abefimouxE]+)*

Alternatively, if a pattern suggestion doesn't make sense for this project, add a #
to the beginning of the line in the candidates file with the pattern to stop suggesting it.

Errors, Warnings, and Notices ❌ (3)

See the 📂 files view, the 📜action log, or 📝 job summary for details.

❌ Errors, Warnings, and Notices Count
ℹ️ candidate-pattern 2
❌ check-file-path 2
⚠️ ignored-expect-variant 1

See ❌ Event descriptions for more information.

✏️ Contributor please read this

By default the command suggestion will generate a file named based on your commit. That's generally ok as long as you add the file to your commit. Someone can reorganize it later.

If the listed items are:

  • ... misspelled, then please correct them instead of using the command.
  • ... names, please add them to .github/actions/spelling/allow/names.txt.
  • ... APIs, you can add them to a file in .github/actions/spelling/allow/.
  • ... just things you're using, please add them to an appropriate file in .github/actions/spelling/expect/.
  • ... tokens you only need in one place and shouldn't generally be used, you can add an item in an appropriate file in .github/actions/spelling/patterns/.

See the README.md in each directory for more information.

🔬 You can test your commits without appending to a PR by creating a new branch with that extra change and pushing it to your fork. The check-spelling action will run in response to your push -- it doesn't require an open pull request. By using such a branch, you can limit the number of typos your peers see you make. 😉

If the flagged items are 🤯 false positives

If items relate to a ...

  • binary file (or some other file you wouldn't want to check at all).

    Please add a file path to the excludes.txt file matching the containing file.

    File paths are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your files.

    ^ refers to the file's path from the root of the repository, so ^README\.md$ would exclude README.md (on whichever branch you're using).

  • well-formed pattern.

    If you can write a pattern that would match it,
    try adding it to the patterns.txt file.

    Patterns are Perl 5 Regular Expressions - you can test yours before committing to verify it will match your lines.

    Note that patterns can't match multiline strings.

@psanogo psanogo closed this Dec 3, 2025
@microsoft microsoft locked and limited conversation to collaborators Dec 3, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant