7 references to SourceRepositoryMismatch
aspire (3)
Agents\AspireSkills\GitHubArtifactAttestationVerifier.cs (1)
89return new ProvenanceVerificationResult { Outcome = ProvenanceVerificationOutcome.SourceRepositoryMismatch };
Npm\SigstoreNpmProvenanceChecker.cs (2)
255return (new ProvenanceVerificationResult { Outcome = ProvenanceVerificationOutcome.SourceRepositoryMismatch }, null); 469Outcome = ProvenanceVerificationOutcome.SourceRepositoryMismatch,
Aspire.Cli.Tests (4)
Agents\PlaywrightCliInstallerTests.cs (1)
443var provenanceChecker = new TestNpmProvenanceChecker { ProvenanceOutcome = ProvenanceVerificationOutcome.SourceRepositoryMismatch };
Agents\SigstoreNpmProvenanceCheckerTests.cs (3)
329[InlineData("https://github.com/evil/aspire-skills", ".github/workflows/publish.yml", "refs/tags/v0.0.1", nameof(ProvenanceVerificationOutcome.SourceRepositoryMismatch))] 375Assert.Equal(ProvenanceVerificationOutcome.SourceRepositoryMismatch, result.Outcome); 717Assert.Equal(ProvenanceVerificationOutcome.SourceRepositoryMismatch, result.Outcome);