From c4158b38014de04569c0280d02f1e0dfe818e8d5 Mon Sep 17 00:00:00 2001 From: sunshinesmilelk Date: Thu, 21 Nov 2024 13:34:36 +0800 Subject: [PATCH] fix: pr label action --- .github/workflows/pr-label-title-body.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pr-label-title-body.yml b/.github/workflows/pr-label-title-body.yml index 59effe6c..feceb67c 100644 --- a/.github/workflows/pr-label-title-body.yml +++ b/.github/workflows/pr-label-title-body.yml @@ -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"] } ]