Azure / Azure/azure-rest-api-specs
[EngSys] Delete tags like "openapi-baselineTag-*"
- Dominant language
- TypeSpec
- Stars
- 3.1k
- Forks
- 5.9k
- Avg merge
- 3d 37m
- Merged PRs (30d)
- 446
Description
Tags like `openapi-baselineTag-*` comprise 1656 of the 1660 tags in the repo. They slow down git operations, can cause errors on Windows due to long paths, etc. Can they all be deleted?
We have already deleted similar tags like `update-*` (https://github.com/Azure/azure-rest-api-specs/issues/32960).
```
~/specs$ git tag | awk '{print length($0), $0}' | sort -k1,1nr | wc
1660 3320 131092
~/specs$ git tag | awk '{print length($0), $0}' | grep openapi-baseline | sort -k1,1nr | wc
1656 3312 131001
~/specs$ git tag | awk '{print length($0), $0}' | sort -k1,1nr | more
131 openapi-baselineTag-apmehrotra-hybridconnectivity-Microsoft.HybridConnectivity-2023-03-15-childresoureceservicec
onfiguration-apoorv
127 openapi-baselineTag-release-release-securityinsights-Microsoft.SecurityInsights-2024-06-01-preview-EnrichmentWid
getsNewResource
121 openapi-baselineTag-alexandraavendano-baremetalinfrastructure-Microsoft.BareMetalInfrastructure-2023-07-31-priva
tepreview
```
Contributor guide
Assessment
This issue has not been assessed yet.