v4.1.0
🚀[Feature]: Add Notice_Mode input to control test completion notifications (#21)
This release introduces a new Notice_Mode input parameter to control when GitHub notices are displayed for test completion. By default, notices are now only shown on test failure, providing more flexibility in managing action output verbosity.
What's New
- New Input:
Notice_Mode- Controls when GitHub notices are displayed for test completion:Full: Show notices on both success and failure.Failed(default): Show notices only on failure.None: Disable notices entirely.
This provides more flexibility in managing action output verbosity.
Changes
- Updated
action.ymlto define the new input and pass it via environment variables. - Updated
README.mdwith input documentation.