mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Fix round-robin CI script when state issue has no assignees
This commit is contained in:
parent
ea1dd9a838
commit
fd2c45b159
1 changed files with 1 additions and 1 deletions
2
.github/workflows/round-robin.yml
vendored
2
.github/workflows/round-robin.yml
vendored
|
|
@ -24,7 +24,7 @@ jobs:
|
|||
owner: context.repo.owner,
|
||||
repo: context.repo.repo
|
||||
});
|
||||
return issue.data.assignees[0].login || '';
|
||||
return (issue.data.assignees && issue.data.assignees[0].login) || '';
|
||||
- name: Dump last assigned
|
||||
env:
|
||||
LAST_ASSIGNED: ${{ steps.assigned.outputs.result }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue