File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -18061,7 +18061,9 @@ async function run() {
18061
18061
}
18062
18062
run().catch((error) => {
18063
18063
console.error(error);
18064
- process.exit(1);
18064
+ // Zero status ensures that the action is marked as successful regardless the outcome
18065
+ // which means that no failure notification is sent to issue's subscribers
18066
+ process.exit(0);
18065
18067
});
18066
18068
18067
18069
Original file line number Diff line number Diff line change @@ -103,5 +103,7 @@ async function run() {
103
103
104
104
run ( ) . catch ( ( error ) => {
105
105
console . error ( error ) ;
106
- process . exit ( 1 ) ;
106
+ // Zero status ensures that the action is marked as successful regardless the outcome
107
+ // which means that no failure notification is sent to issue's subscribers
108
+ process . exit ( 0 ) ;
107
109
} ) ;
You can’t perform that action at this time.
0 commit comments