feat: add auto-assign to themes issues and PRs (#700)

* feat: add auto-assign to themes

* removed comma

* removed ending commas

* add extra contributors
This commit is contained in:
Afonso Jorge Ramos 2022-03-27 12:29:45 +02:00 committed by GitHub
parent 6d0ae237f0
commit 565c810f1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

63
.github/workflows/auto-assign.yml vendored Normal file
View File

@ -0,0 +1,63 @@
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 }}"