We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4274cca commit 87573b2Copy full SHA for 87573b2
tools/monitor-oci-artifacts/src/main.rs
@@ -70,6 +70,9 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
70
71
for repository in &repositories {
72
let (project_name, repository_name) = repository.name.split_once('/').unwrap();
73
+ if project_name == "sandbox" {
74
+ continue;
75
+ }
76
let artifacts: Vec<Artifact> = reqwest::get(format!(
77
"{}/projects/{}/repositories/{}/artifacts",
78
base_url,
0 commit comments