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 dfb235a commit 69bd6b0Copy full SHA for 69bd6b0
src/index.ts
@@ -130,6 +130,7 @@ async function runAction(inputs: Inputs) {
130
await validateInputs(inputs);
131
132
for (let attempt = 1; attempt <= inputs.max_attempts; attempt++) {
133
+ info(`::group::Attempt ${attempt}`);
134
try {
135
// just keep overwriting attempts output
136
setOutput(OUTPUT_TOTAL_ATTEMPTS_KEY, attempt);
@@ -156,6 +157,8 @@ async function runAction(inputs: Inputs) {
156
157
info(`Attempt ${attempt} failed. Reason: ${error.message}`);
158
}
159
160
+ } finally {
161
+ info(`::endgroup::`);
162
163
164
0 commit comments