mirror of
https://github.com/morpheusthewhite/spicetify-themes.git
synced 2024-11-26 12:55:59 +01:00
565c810f1e
* feat: add auto-assign to themes * removed comma * removed ending commas * add extra contributors
64 lines
1.8 KiB
YAML
64 lines
1.8 KiB
YAML
name: "Auto Assing on Theme"
|
|
on:
|
|
issues:
|
|
types: [opened, edited]
|
|
pull_request:
|
|
types: [opened, edited]
|
|
|
|
jobs:
|
|
assign:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: Naturalclar/issue-action@v2.0.2
|
|
with:
|
|
title-or-body: "both"
|
|
parameters: |
|
|
[
|
|
{
|
|
"keywords": ["BurntSienna"],
|
|
"labels": ["🙋 help wanted"],
|
|
"assignees": ["pjaspinski"]
|
|
},
|
|
{
|
|
"keywords": ["Default"],
|
|
"labels": ["🙋 help wanted"],
|
|
"assignees": ["Blacksuan19"]
|
|
},
|
|
{
|
|
"keywords": ["Dreary"],
|
|
"labels": ["🙋 help wanted"],
|
|
"assignees": ["CharlieS1103"]
|
|
},
|
|
{
|
|
"keywords": ["Dribbblish"],
|
|
"labels": ["🙋 help wanted"],
|
|
"assignees": ["khanhas"]
|
|
},
|
|
{
|
|
"keywords": ["Glaze"],
|
|
"labels": ["🙋 help wanted"],
|
|
"assignees": ["CharlieS1103"]
|
|
},
|
|
{
|
|
"keywords": ["Onepunch"],
|
|
"labels": ["🙋 help wanted"],
|
|
"assignees": ["okarin001"]
|
|
},
|
|
{
|
|
"keywords": ["Sleek"],
|
|
"labels": ["🙋 help wanted"],
|
|
"assignees": ["harbassan"]
|
|
},
|
|
{
|
|
"keywords": ["Turntable"],
|
|
"labels": ["🙋 help wanted"],
|
|
"assignees": ["grasonchan"]
|
|
},
|
|
{
|
|
"keywords": ["Ziro"],
|
|
"labels": ["🙋 help wanted"],
|
|
"assignees": ["schnensch0"]
|
|
}
|
|
]
|
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|