File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change 22
22
ISSUE_ASSIGNEES : ${{toJson(github.event.issue.assignees)}}
23
23
ISSUE_IS_INTERNAL : ${{steps.internal.outputs.result}}
24
24
run : |
25
- echo ::set-output name=result::$(node -p -e "process.env.ISSUE_IS_INTERNAL === '0' && JSON.parse(process.env.ISSUE_ASSIGNEES).length === 0 && JSON.parse(process.env.ISSUE_LABELS).filter(item => item.name.indexOf('data science') >= 0).length === 1 ? 1 : 0")
25
+ echo ::set-output name=result::$(node -p -e "process.env.ISSUE_IS_INTERNAL === '0' && JSON.parse(process.env.ISSUE_ASSIGNEES).length === 0 && JSON.parse(process.env.ISSUE_LABELS).filter(item => item.name.indexOf('data science') >= 0 && JSON.parse(process.env.ISSUE_LABELS).filter(item => item.name.indexOf('Epic') === -1 ).length === 1 ? 1 : 0")
26
26
shell : bash
27
27
- uses : actions/checkout@v2
28
28
if : steps.proceed.outputs.result == 1
You can’t perform that action at this time.
0 commit comments