Fix typo in vulnerability policy instructions#368
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Pull request overview
Fixes a typo in the “Block Until Scan” documentation so the vulnerability policy example correctly references the requests Python package.
Changes:
- Correct
requets→requestsin the vulnerability policy example text. - Adjust indentation/whitespace in a couple of lines (which may affect Markdown rendering).
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
You can also share your feedback on Copilot code review. Take the survey.
| Browse to your Workspace Settings and [create a new vulnerability policy](/policy-management/vulnerability-policy). Define your policy with: | ||
| - A name. | ||
| - A [package Search Query](/artifact-management/search-filter-sort-packages) to scope the filter to `format:python AND requests`. We're targeting only packages named `requets` from Python, following the example in the next step. Adjust the policy to affect only to your desired scope if you use a different package for this example. | ||
| - A [package Search Query](/artifact-management/search-filter-sort-packages) to scope the filter to `format:python AND requests`. We're targeting only packages named `requests` from Python, following the example in the next step. Adjust the policy to affect only to your desired scope if you use a different package for this example. |
There was a problem hiding this comment.
The phrase "Adjust the policy to affect only to your desired scope" is ungrammatical and a bit hard to parse. Consider rewording to something like "Adjust the policy to apply only to your desired scope" (or similar).
| - A [package Search Query](/artifact-management/search-filter-sort-packages) to scope the filter to `format:python AND requests`. We're targeting only packages named `requests` from Python, following the example in the next step. Adjust the policy to affect only to your desired scope if you use a different package for this example. | |
| - A [package Search Query](/artifact-management/search-filter-sort-packages) to scope the filter to `format:python AND requests`. We're targeting only packages named `requests` from Python, following the example in the next step. Adjust the policy so that it applies only to your desired scope if you use a different package for this example. |
| - **Reduced Risk**: checking packages before running them reduces your exposure to non-compliant software. | ||
|
|
||
| In short, Block Until Scan is a crucial tool for securing and reducing risk in your software supply chain. No newline at end of file | ||
| In short, Block Until Scan is a crucial tool for securing and reducing risk in your software supply chain. |
There was a problem hiding this comment.
The PR description says this is only a typo fix, but this diff also changes indentation/whitespace (e.g., this line is no longer indented). Since that can change Markdown rendering, it would be good to mention the formatting adjustment explicitly in the PR description (or revert it if unintentional).
Teeny change of 'requets' to 'requests'.