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
console.log(`Found existing issue for version ${nextVersion}, skipping creation`);
173
+
return;
174
+
}
162
175
163
176
console.log(`Creating issue for failed version: ${nextVersion}`);
164
177
165
178
await github.rest.issues.create({
166
179
owner: context.repo.owner,
167
180
repo: context.repo.repo,
168
-
title: `Emulator version update verification failed: ${nextVersion}`,
181
+
title: issueTitle,
169
182
body: `The verification of the next emulator version ${nextVersion} failed. Please check the [workflow run](${process.env.GITHUB_SERVER_URL}/${context.repo.owner}/${context.repo.repo}/actions/runs/${process.env.GITHUB_RUN_ID}) for details.`
0 commit comments