Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
#
# @Fieldnote-Echo — repository owner (admin)
# @project-navi-bot — write collaborator
# @toadkicker — write collaborator

# Default owners for everything in the repo.
* @Fieldnote-Echo @project-navi-bot
* @Fieldnote-Echo @project-navi-bot @toadkicker
5 changes: 4 additions & 1 deletion .github/workflows/coverage-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ name: coverage-python
# line. Informational like the core coverage job: no floor yet (the FFI glue
# has guard branches unreachable on 64-bit, e.g. the usize-overflow arms), and
# fail_ci_if_error is false so a failed or absent upload never blocks a PR.
# The upload runs without credentials (supported for public repos).
# The upload uses OIDC so Codecov authenticates the current GitHub repository
# identity after transfers instead of depending on a repo-token slug.
on:
push:
branches: [main]
Expand Down Expand Up @@ -42,6 +43,7 @@ jobs:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write # authenticate Codecov upload to the current repo via OIDC
steps:
- uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
with:
Expand Down Expand Up @@ -85,3 +87,4 @@ jobs:
files: binding-lcov.info
flags: python-binding
fail_ci_if_error: false
use_oidc: true
3 changes: 2 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
runs-on: ubuntu-24.04
permissions:
contents: read
id-token: write # authenticate Codecov upload to the current repo via OIDC
env:
SDE_VERSION: sde-external-10.8.0-2026-03-15-lin
SDE_SHA256: 50b320cd226acef7a491f5b321fc1be3c3c7984f9e27a456e64894b5b0979dd3
Expand Down Expand Up @@ -110,4 +111,4 @@ jobs:
with:
files: lcov.info
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}
use_oidc: true
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,10 @@ zero-system-dependency crate.
is credited as the project it grew within, with thanks; ordvec's
development history is in this repository's git log.

The ordvec project is jointly maintained by
[@Project-Navi](https://github.com/Project-Navi) and
[@Baur-Software](https://github.com/Baur-Software).

## Acknowledgements

Thanks to Todd Baur ([@toadkicker](https://github.com/toadkicker)) for the
Expand Down
Loading