:octocat: Adds action to label issues raised by sponsors as high priority

This commit is contained in:
Alicia Sykes 2021-07-21 17:24:15 +01:00 committed by GitHub
parent f22b1b0d42
commit 2e637dcca3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 18 additions and 0 deletions

18
.github/workflows/label-sponsors.yml vendored Normal file
View File

@ -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 }}