Skip to content

Commit

Permalink
Merge pull request #57 from eslerm/minimally-vendored
Browse files Browse the repository at this point in the history
vendored code: use only necessary vendored code
  • Loading branch information
cpaelzer authored Jun 5, 2024
2 parents 17daaac + 957b5c3 commit 18e2045
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -572,6 +572,8 @@ RULE: - the security team will alert the owning team of issues that may
RULE: affect their vendored code
RULE: - the owning team will provide timely, high quality updates for the
RULE: security team to sponsor to fix issues in the affected vendored code
RULE: - the owning team will use a minimal set of vendored code (e.g., Rust
RULE: packages are unlikely to need `*_win` crates to build)
RULE: - if subsequent uploads add new vendored components or dependencies
RULE: these have to be reviewed and agreed by the security team.
RULE: - Such updates in the project might be trivial, but imply that a
Expand Down

1 comment on commit 18e2045

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@check-spelling-bot Report

🔴 Please review

See the 📜action log or 📝 job summary for details.

Unrecognized words (1)

libseed

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

... in a clone of the [email protected]:canonical/ubuntu-mir.git repository
on the main branch (ℹ️ how do I use this?):

curl -s -S -L 'https://raw.githubusercontent.com/check-spelling/check-spelling/main/apply.pl' |
perl - 'https://github.com/canonical/ubuntu-mir/actions/runs/9379330920/attempts/1'
Available 📚 dictionaries could cover words (expected and unrecognized) not in the 📘 dictionary

This includes both expected items (13) from .github/actions/spelling/expect.txt and unrecognized words (1)

Dictionary Entries Covers Uniquely
cspell:cpp/src/stdlib-c.txt 278 2
cspell:python/src/python/python-lib.txt 2417 2
cspell:npm/dict/npm.txt 302 1 1
cspell:elixir/dict/elixir.txt 95 1
cspell:sql/src/tsql.txt 112 1

Consider adding them (in .github/workflows/spelling.yml) for uses: check-spelling/check-spelling@main in its with:

      with:
        extra_dictionaries:
          cspell:cpp/src/stdlib-c.txt
          cspell:python/src/python/python-lib.txt
          cspell:npm/dict/npm.txt
          cspell:elixir/dict/elixir.txt
          cspell:sql/src/tsql.txt

To stop checking additional dictionaries, add (in .github/workflows/spelling.yml) for uses: check-spelling/check-spelling@main in its with:

check_extra_dictionaries: ''
✏️ Contributor please read this By default the suggested command will add the listed items to the .github/actions/spelling/expect.txt. This is not always desired!

If a listed items is

  • ... misspelled, then please correct them instead of changing the spell checker configuration.
  • ... an actual word/term that has a high probability of showing up in future contributions, please add it to .github/actions/spelling/allow.
  • ... an term/word that just you use or shouldn't generally be accepted, please add it to .github/actions/spelling/expect.txt.

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. 😉

Please sign in to comment.