Skip to content

Commit

Permalink
Add debug_bloom option (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
at-wat authored Sep 9, 2021
1 parent 7a043cd commit e6d3073
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ inputs:
description: "Set true to add a tag automatically if not exist. It requires that the source code is checked out."
open_pr:
description: "Set true to open PR on ros/rosdistro automatically."
debug_bloom:
description: "Enable bloom debug output."
outputs:
version:
description: "Version of the created release on tag_and_release=true."
Expand Down
5 changes: 5 additions & 0 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ then
options="${options} --no-pull-request"
fi

if [ "${INPUT_DEBUG_BLOOM:-false}" != "true" ]
then
options="${options} --debug"
fi

export TERM=dumb

for ros_distro in ${INPUT_ROS_DISTRO}
Expand Down

0 comments on commit e6d3073

Please sign in to comment.