From 41ff3bbaacbc9ab0eed7a45a9950ef5cd173e0d6 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Sat, 1 Oct 2022 09:20:35 -0400 Subject: [PATCH] LP1991444: Cleanup Build Docs Artifacts in GitHub Actions The Build Docs GitHub action leaves the built docs behind as artifacts. These artifacts currently use about 58MB apiece. This can quickly consume all of the available storage spacce (500MB) for free-tier GitHub accounts. This commit adds a retention-days setting of 2 so that build docs artifacts should be removed after two days. See also: https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts#configuring-a-custom-artifact-retention-period Signed-off-by: Jason Stephenson --- .github/workflows/docs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 29cc5f8adf..9a1b66cac6 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -21,3 +21,4 @@ jobs: with: name: built-docs path: docs/output + retention-days: 2 -- 2.11.0