From ca4cf7cc70c1e4e8841282ac693801dcabbcdc86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebasti=C3=A1n=20Ram=C3=ADrez?= Date: Sat, 27 Jun 2020 19:59:10 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20GitHub=20action=20to=20label?= =?UTF-8?q?=20approved=20PRs=20(#1638)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pr-approvals.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/pr-approvals.yml diff --git a/.github/workflows/pr-approvals.yml b/.github/workflows/pr-approvals.yml new file mode 100644 index 000000000..dbc160c7d --- /dev/null +++ b/.github/workflows/pr-approvals.yml @@ -0,0 +1,14 @@ +name: Label approved pull requests +on: pull_request_review +jobs: + labelWhenApproved: + name: Label when approved + runs-on: ubuntu-latest + steps: + - name: Label when approved + uses: pullreminders/label-when-approved-action@v1.0.7 + env: + APPROVALS: "2" + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + ADD_LABEL: "approved-2" + REMOVE_LABEL: "awaiting%20review"