Remove neutral exit code references

This commit is contained in:
Danny McCormick
2019-08-06 09:12:30 -04:00
parent da76d1fd39
commit 3004de4b40
2 changed files with 3 additions and 20 deletions
+2 -7
View File
@@ -43,18 +43,13 @@ core.addPath('pathToTool');
#### Exit codes
You should use this library to set the exit code for your action:
You should use this library to set the failing exit code for your action:
```
const core = require('@actions/core');
try {
if (work to do) {
// Do work
} else {
// Set neutral indicates that the action terminated but did not fail (aka there was no work to be done)
core.setNeutral();
}
// Do stuff
}
catch (err) {
// setFailed logs the message and sets a failing exit code