From a613412c85e9bcebb7287786c1b80a95b43176e8 Mon Sep 17 00:00:00 2001 From: Rich Howell <22135084+rich-howell@users.noreply.github.com> Date: Wed, 18 Jan 2023 18:19:29 +0000 Subject: [PATCH] Update opened-pr-triage.yml --- .github/workflows/opened-pr-triage.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/opened-pr-triage.yml b/.github/workflows/opened-pr-triage.yml index 9b1ddc6b67..44e0ef6bb8 100644 --- a/.github/workflows/opened-pr-triage.yml +++ b/.github/workflows/opened-pr-triage.yml @@ -1,14 +1,18 @@ -name: Mark new issue for triage - +name: Add Label on: pull_request: - types: [opened] + types: + - opened jobs: - pr-waiting-review: + add-label: + name: Add Label runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - uses: actions-ecosystem/action-add-labels@v1 + - uses: actions/checkout@v2 + - uses: christianvuerings/add-labels@v1 with: - labels: waiting-review + labels: | + waiting-review + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}