From 4766f70cd339d37e81c2eedbbe674efef7cb2bde Mon Sep 17 00:00:00 2001 From: Xiang Yan Date: Tue, 19 Jul 2022 13:50:07 -0700 Subject: [PATCH] Remove needs-triage label if it is assigned --- .github/workflows/remove-needs-triage.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/remove-needs-triage.yml diff --git a/.github/workflows/remove-needs-triage.yml b/.github/workflows/remove-needs-triage.yml new file mode 100644 index 000000000000..4d19f002cfaa --- /dev/null +++ b/.github/workflows/remove-needs-triage.yml @@ -0,0 +1,13 @@ +name: Remove needs-triage label if it is assigned + +on: + issues: + types: [assigned] + +jobs: + remove_label: + runs-on: ubuntu-latest + steps: + - uses: actions-ecosystem/action-remove-labels@v1 + with: + labels: needs-triage \ No newline at end of file