From 99f179d21104b5f17c854170978228f773724302 Mon Sep 17 00:00:00 2001 From: Tim 'mithro' Ansell Date: Sat, 7 Nov 2020 10:25:27 -0800 Subject: [PATCH] infra: Convert from old autolabeler GitHub App to new GitHub actions version. The old autolabeler GitHub App is no longer supported and broken. The new GitHub actions autolabeler is maintained by GitHub. Signed-off-by: Tim 'mithro' Ansell --- .github/{autolabeler.yml => labeler.yml} | 0 .github/workflows/labeler.yml | 11 +++++++++++ 2 files changed, 11 insertions(+) rename .github/{autolabeler.yml => labeler.yml} (100%) create mode 100644 .github/workflows/labeler.yml diff --git a/.github/autolabeler.yml b/.github/labeler.yml similarity index 100% rename from .github/autolabeler.yml rename to .github/labeler.yml diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml new file mode 100644 index 0000000..23956a0 --- /dev/null +++ b/.github/workflows/labeler.yml @@ -0,0 +1,11 @@ +name: "Pull Request Labeler" +on: +- pull_request_target + +jobs: + triage: + runs-on: ubuntu-latest + steps: + - uses: actions/labeler@main + with: + repo-token: "${{ secrets.GITHUB_TOKEN }}"