From fdb6d46a05d8cb27dbe7bf99f0b4c18127eba19f Mon Sep 17 00:00:00 2001 From: Pierre Warnier Date: Fri, 3 Apr 2026 15:01:26 +0200 Subject: [PATCH] review: address 2 Copilot review comments - Add homepage.workspace to root package (missing vs subcrates) - Gate Docker test-docker job to push only (seccomp:unconfined and SYS_ADMIN are unsafe for untrusted PR contexts) --- .github/workflows/ci.yml | 1 + Cargo.toml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c585a01..95fd3fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,6 +61,7 @@ jobs: test-docker: name: Test (${{ matrix.target }}) + if: github.event_name == 'push' runs-on: ubuntu-latest strategy: matrix: diff --git a/Cargo.toml b/Cargo.toml index ec965e6..9cd0b68 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,7 @@ rust-version.workspace = true license.workspace = true authors.workspace = true repository.workspace = true +homepage.workspace = true description = "Memory-safe Rust reimplementation of Linux shadow-utils" readme = "README.md" keywords = ["shadow-utils", "uutils", "shadow", "passwd", "linux"]