From 265be6b51440b1d88d945234dc076487031a63f0 Mon Sep 17 00:00:00 2001 From: Christopher Allford <6451942+ObliviousHarmony@users.noreply.github.com> Date: Tue, 15 Feb 2022 20:50:40 -0800 Subject: [PATCH] Applied label changes --- .github/workflows/update-feedback-labels.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/update-feedback-labels.yml b/.github/workflows/update-feedback-labels.yml index bb0af46f64b..e6ac82bc1b7 100644 --- a/.github/workflows/update-feedback-labels.yml +++ b/.github/workflows/update-feedback-labels.yml @@ -7,21 +7,21 @@ jobs: github.actor != 'github-actions' && github.event.issue && github.event.issue.state == 'open' && - contains(github.event.issue.labels.*.name, 'needs feedback') + contains(github.event.issue.labels.*.name, 'needs: author feedback') runs-on: ubuntu-latest steps: - name: Add has feedback uses: actions-ecosystem/action-add-labels@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} - labels: 'has feedback' + labels: 'needs: triage feedback' - name: remove needs feedback uses: actions-ecosystem/action-remove-labels@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} - labels: 'needs feedback' + labels: 'needs: author feedback' - name: remove stale uses: actions-ecosystem/action-remove-labels@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} - labels: Stale + labels: 'status: stale'