Skip to content

Commit 20f4004

Browse files
committed
Change monitor run always
Changed the 'post-if' condition in 'monitor/action.yml' from 'success()' to 'always()'. This change ensures that the post-workflow actions are executed in all scenarios, not only when the main steps are successful. This is necessary to achieve better error logging and debugging.
1 parent 5802518 commit 20f4004

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

monitor/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ runs:
1717
using: 'node16'
1818
main: 'dist/index.js'
1919
post: 'dist/index.js'
20-
post-if: success()
20+
post-if: always()

0 commit comments

Comments
 (0)