From 2e637dcca3af21e90e45277a807ced791a799c0a Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Wed, 21 Jul 2021 17:24:15 +0100 Subject: [PATCH] :octocat: Adds action to label issues raised by sponsors as high priority --- .github/workflows/label-sponsors.yml | 18 ++++++++++++++++++ 1 file changed, 18 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 00000000..f7d129bd --- /dev/null +++ b/.github/workflows/label-sponsors.yml @@ -0,0 +1,18 @@ +# Adds a label to any issues raised by a sponsor of Lissy93/Dashy +# In order to allow their request can be prioritized +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 + with: + label: Priority Request - Sponsor 💖 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}