merge-after-ci: set labels correctly
All checks were successful
checks / checks (pull_request) Successful in 37s
checks / check-links (pull_request) Successful in 21s
checks / checks-impure (pull_request) Successful in 1m45s

This commit is contained in:
DavHau 2024-03-13 18:51:50 +07:00
parent be1bd8f252
commit a9dbd92ff3
2 changed files with 2 additions and 3 deletions

View File

@ -17,8 +17,8 @@ subprocess.run(
"origin",
"main",
"--assignees",
"clan-bot",
*([*args.reviewers] if args.reviewers else []),
",".join(["clan-bot", *args.reviewers]),
*(["--labels", "needs-review"] if not args.no_review else []),
*args.args,
]
)

View File

@ -30,5 +30,4 @@ tea pr create \
--description "$rest" \
--head "$tempRemoteBranch" \
--base "$targetBranch" \
--labels "needs-review" \
"$@"