From 85264b677e98dcf55a3155085b011550908fb2c6 Mon Sep 17 00:00:00 2001 From: Jason Q <81179619+beqqrry-aws@users.noreply.github.com> Date: Thu, 11 Jan 2024 12:04:56 -0700 Subject: [PATCH] Remove text label checks and add Bug to stats (#5924) --- .github/workflows/label-checker.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/label-checker.yml b/.github/workflows/label-checker.yml index 3886b40494d..d7878f16b38 100644 --- a/.github/workflows/label-checker.yml +++ b/.github/workflows/label-checker.yml @@ -22,20 +22,11 @@ jobs: all_of: On Call Review complete none_of: On Call Review needed repo_token: ${{ secrets.GITHUB_TOKEN }} - check_text_labels: - name: Check Text labels - runs-on: ubuntu-latest - steps: - - uses: docker://agilepathway/pull-request-label-checker:latest - with: - one_of: Text Review complete,Text Review not needed - none_of: Text Review needed - repo_token: ${{ secrets.GITHUB_TOKEN }} check_stats_labels: name: Check Stats labels runs-on: ubuntu-latest steps: - uses: docker://agilepathway/pull-request-label-checker:latest with: - one_of: Application,MVP,Workflow,Task + one_of: Application,MVP,Workflow,Task,Bug repo_token: ${{ secrets.GITHUB_TOKEN }}