ci: assigner: fix the main operation selector check
Fix an "if" that should have been an "elif". This is currently causing the script to fallback into the "do all unassigned PRs of the day" path when a PR is specified. Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
This commit is contained in:
parent
cb3ae1779f
commit
5e78660715
1 changed files with 1 additions and 1 deletions
|
@ -327,7 +327,7 @@ def main():
|
||||||
|
|
||||||
if args.pull_request:
|
if args.pull_request:
|
||||||
process_pr(gh, maintainer_file, args.pull_request)
|
process_pr(gh, maintainer_file, args.pull_request)
|
||||||
if args.issue:
|
elif args.issue:
|
||||||
process_issue(gh, maintainer_file, args.issue)
|
process_issue(gh, maintainer_file, args.issue)
|
||||||
elif args.modules:
|
elif args.modules:
|
||||||
process_modules(gh, maintainer_file)
|
process_modules(gh, maintainer_file)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue