Skip to content
This repository was archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
fix!: send failure instead of pending when it fails
Browse files Browse the repository at this point in the history
  • Loading branch information
aslafy-z committed Dec 26, 2019
1 parent 08eebbe commit c3f9e97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ async function run() {
let state = 'success';
let description = successState;
if (error) {
state = 'pending';
state = 'failure';
description = failureState;
}

Expand Down

0 comments on commit c3f9e97

Please sign in to comment.