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 849b60e commit d0a1f42Copy full SHA for d0a1f42
src/start-proxy-action-post.ts
@@ -25,7 +25,6 @@ async function runWrapper() {
25
process.kill(Number(pid));
26
}
27
28
-
29
const config = await configUtils.getConfig(
30
actionsUtil.getTemporaryDirectory(),
31
logger,
@@ -60,9 +59,11 @@ async function runWrapper() {
60
59
},
61
);
62
63
- } catch(error) {
+ } catch (error) {
64
// A failure in the post step should not fail the entire action.
65
- logger.warning(`start-proxy post-action step failed: ${getErrorMessage(error)}`);
+ logger.warning(
+ `start-proxy post-action step failed: ${getErrorMessage(error)}`,
66
+ );
67
68
69
0 commit comments