From 04809dde1cd76bb092f5557cd6c91e469e593caf Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 15 Feb 2021 13:18:30 -0500 Subject: [PATCH] Adds sponsor labeler --- .github/workflows/label-sponsors.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/label-sponsors.yml diff --git a/.github/workflows/label-sponsors.yml b/.github/workflows/label-sponsors.yml new file mode 100644 index 0000000..32e008e --- /dev/null +++ b/.github/workflows/label-sponsors.yml @@ -0,0 +1,14 @@ +name: Label sponsors +on: + pull_request: + types: [opened] + issues: + types: [opened] +jobs: + build: + name: is-sponsor-label + runs-on: ubuntu-latest + steps: + - uses: JasonEtco/is-sponsor-label-action@v1.1.3 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}