[ci] Move nightly cleanup task to monorepo (#7050)

This commit is contained in:
Ryan Blue
2024-09-08 20:31:55 -04:00
committed by GitHub
parent 7c85c33666
commit 34e4587121
3 changed files with 82 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
"files": [
{
"aql": {
"items.find": {
"repo": "wpilib-generic-gradlecache",
"$or":[
{
"stat.downloaded": { "$before":"1mo" }
},
{
"stat.downloaded": { "$eq":null }
}
],
"created": { "$before":"1mo" }
}
}
}
]
}

View File

@@ -0,0 +1,29 @@
{
"files": [
{
"aql": {
"items.find": {
"repo": "wpilib-mvn-development",
"path": { "$nmatch":"*edu/wpi/first/thirdparty*" },
"$or":[
{
"artifact.module.build.name": { "$eq":"allwpilib" }
},
{
"artifact.module.build.name": { "$eq":"combiner" }
}
],
"$or":[
{
"stat.downloaded": { "$before":"3mo" }
},
{
"stat.downloaded": { "$eq":null }
}
],
"created": { "$before":"3mo" }
}
}
}
]
}