We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7bf35d commit 06f2b05Copy full SHA for 06f2b05
.github/workflows/triage-agent.yml
@@ -46,7 +46,8 @@ jobs:
46
core.setOutput('user', String((issue.user && issue.user.login) || ''));
47
core.setOutput('title', String(issue.title || ''));
48
core.setOutput('body', String(issue.body || ''));
49
- core.setOutput('labels', JSON.stringify(issue.labels || []));
+ const labelNames = (issue.labels || []).map(label => label.name);
50
+ core.setOutput('labels', JSON.stringify(labelNames));
51
52
- name: Call Azure Function
53
id: call_azure_function
0 commit comments