You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const body = `The following members failed to have their CI launched during the [workflow run](${context.serverUrl}/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}):\n\n` +
53
+
failedMembers.map(m => `- \`${m}\``).join('\n') +
54
+
`\n\nPlease investigate the failures.`;
55
+
await github.rest.issues.create({
56
+
owner: context.repo.owner,
57
+
repo: context.repo.repo,
58
+
title: `Ecosystem CI launch failures - ${new Date().toISOString().split('T')[0]}`,
0 commit comments