mirror of
https://github.com/Lissy93/dashy.git
synced 2024-12-20 15:31:53 +03:00
19 lines
469 B
YAML
19 lines
469 B
YAML
|
# 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 }}
|