Skip to content

Commit

Permalink
fix: pr label action
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshinesmilelk committed Nov 21, 2024
1 parent f39b28a commit c4158b3
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .github/workflows/pr-label-title-body.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,26 +24,32 @@ jobs:
[
{
"keywords": ["bug","fix"],
"labels": ["PR: fix"]
"labels": ["PR: fix"],
"assignees": ["username"]
},
{
"keywords": ["chore"],
"labels": ["PR: chore"]
"labels": ["PR: chore"],
"assignees": ["username"]
},
{
"keywords": ["feat","feature","enhancement","enhance"],
"labels": ["PR: feature"]
"labels": ["PR: feature"],
"assignees": ["username"]
},
{
"keywords": ["docs","documentation","document"],
"labels": ["PR: documentation"]
"labels": ["PR: documentation"],
"assignees": ["username"]
},
{
"keywords": ["refactor"],
"labels": ["PR: refactor"]
"labels": ["PR: refactor"],
"assignees": ["username"]
},
{
"keywords": ["dependency","dep","deps"],
"labels": ["PR: dependency"]
"labels": ["PR: dependency"],
"assignees": ["username"]
}
]

0 comments on commit c4158b3

Please sign in to comment.