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