From a4a0b3b00c9a843e619658d6d6c4dd89f91648f3 Mon Sep 17 00:00:00 2001 From: Emily Rockman Date: Thu, 27 Oct 2022 14:24:20 -0500 Subject: [PATCH] revert to community action --- .github/workflows/triage-labels.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/triage-labels.yml b/.github/workflows/triage-labels.yml index dc387de70dd..a71dc5e1f74 100644 --- a/.github/workflows/triage-labels.yml +++ b/.github/workflows/triage-labels.yml @@ -23,8 +23,11 @@ permissions: jobs: triage_label: - uses: dbt-labs/actions/.github/workflows/replace-label.yml@main - with: - original_label: "awaiting_response" - new_label: "triage" - secrets: inherit + if: contains(github.event.issue.labels.*.name, 'awaiting_response') + runs-on: ubuntu-latest + steps: + - name: initial labeling + uses: andymckay/labeler@master + with: + add-labels: "triage" + remove-labels: "awaiting_response"