-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add action input for fail_on_error (#107)
Fixes: 106 Signed-off-by: Galo Navarro <[email protected]>
- Loading branch information
Showing
2 changed files
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,11 +3,14 @@ description: 'All-in-one action to manage labels in PRs and Issues based on many | |
author: 'Galo Navarro <[email protected]>' | ||
inputs: | ||
config_path: | ||
description: 'Path for labeling rules' | ||
default: '.github/labeler.yml' | ||
description: 'Path for labeling rules' | ||
use_local_config: | ||
default: 'false' | ||
description: 'By default the action will use the configuration file set in the default branch of the repository. When set to true, the action will instead use the configuration found in the local checkout of the repository.' | ||
fail_on_error: | ||
default: 'false' | ||
description: 'By default the action will never fail when an error is found during the evaluation of the labels. This is done in order to avoid disrupting CI pipelines with non-critical tasks. To override this behaviour, set this property to `true` so that any error in the evaluation of labels causes a failure of the workflow.' | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters