Skip to content

Commit 87573b2

Browse files
committed
Exclude sandbox from monitoring
1 parent 4274cca commit 87573b2

File tree

1 file changed

+3
-0
lines changed
  • tools/monitor-oci-artifacts/src

1 file changed

+3
-0
lines changed

tools/monitor-oci-artifacts/src/main.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,9 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
7070

7171
for repository in &repositories {
7272
let (project_name, repository_name) = repository.name.split_once('/').unwrap();
73+
if project_name == "sandbox" {
74+
continue;
75+
}
7376
let artifacts: Vec<Artifact> = reqwest::get(format!(
7477
"{}/projects/{}/repositories/{}/artifacts",
7578
base_url,

0 commit comments

Comments
 (0)