Expand lifetime of repository cache.

These are not growing fast at all, but are taking a long time to asymptotically fill out.

PiperOrigin-RevId: 512086597
This commit is contained in:
Mike Kruskal 2023-02-24 09:14:11 -08:00 committed by Copybara-Service
parent d32332dd81
commit 0e48352e6d
2 changed files with 3 additions and 3 deletions

View file

@ -2,8 +2,8 @@ name: Clear expensive caches to prevent unbounded growth
on:
schedule:
# Run every 1st of the month at 10 AM UTC (2 AM PDT)
- cron: 0 10 1 * *
# Run every 4 months at 10 AM UTC (2 AM PDT)
- cron: 0 10 1 */4 *
# manual
workflow_dispatch:

View file

@ -32,7 +32,7 @@ NS_ASSUME_NONNULL_BEGIN
* `NullValue` is a singleton enumeration to represent the null value for the
* `Value` type union.
*
* The JSON representation for `NullValue` is JSON `null`.
* The JSON representation for `NullValue` is JSON `null`.
**/
typedef GPB_ENUM(GPBNullValue) {
/**