From 9bac2f918f859ccea35aa0e1fa807e2c499079de Mon Sep 17 00:00:00 2001 From: Jason Q <81179619+beqqrry-aws@users.noreply.github.com> Date: Wed, 1 Nov 2023 10:59:38 -0700 Subject: [PATCH] Remove delete action from label auditor. Due to multiple incidents of data loss by accidental runs where an old config file doesn't contain a label and therefore deletes the label, this action should enable skip-delete to prevent this situation. It does mean we'll need to manually delete any labels we truly want gone. --- .github/workflows/label-auditor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/label-auditor.yml b/.github/workflows/label-auditor.yml index 79237440b65..dbf13200ed9 100644 --- a/.github/workflows/label-auditor.yml +++ b/.github/workflows/label-auditor.yml @@ -34,5 +34,5 @@ jobs: with: github-token: ${{ secrets.GITHUB_TOKEN }} yaml-file: .github/allowed-labels.yml - skip-delete: false + skip-delete: true dry-run: false