pub struct FeedbackOptions {
pub thread_comments: ThreadComments,
pub no_lgtm: bool,
pub step_summary: bool,
pub file_annotations: bool,
pub tidy_review: bool,
pub format_review: bool,
pub passive_reviews: bool,
}Fields§
§thread_comments: ThreadCommentsSet this option to true to enable the use of thread comments as feedback.
[!NOTE] To use thread comments, the
GITHUB_TOKEN(provided by Github to each repository) must be declared as an environment variable.
no_lgtm: boolSet this option to true or false to enable or disable the use of a thread comment that basically says ‘Looks Good To Me’ (when all checks pass).
[!IMPORTANT] The
--thread-commentsoption also notes further implications.
step_summary: boolSet this option to true or false to enable or disable the use of a workflow step summary when the run has concluded.
file_annotations: boolSet this option to false to disable the use of file annotations as feedback.
tidy_review: boolSet to true to enable Pull Request reviews from clang-tidy.
format_review: boolSet to true to enable Pull Request reviews from clang-format.
passive_reviews: boolSet to true to prevent Pull Request reviews from
approving or requesting changes.
Trait Implementations§
Source§impl Args for FeedbackOptions
impl Args for FeedbackOptions
Source§fn augment_args<'b>(__clap_app: Command) -> Command
fn augment_args<'b>(__clap_app: Command) -> Command
Source§fn augment_args_for_update<'b>(__clap_app: Command) -> Command
fn augment_args_for_update<'b>(__clap_app: Command) -> Command
Command so it can instantiate self via
FromArgMatches::update_from_arg_matches_mut Read moreSource§impl Clone for FeedbackOptions
impl Clone for FeedbackOptions
Source§fn clone(&self) -> FeedbackOptions
fn clone(&self) -> FeedbackOptions
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for FeedbackOptions
impl Debug for FeedbackOptions
Source§impl FromArgMatches for FeedbackOptions
impl FromArgMatches for FeedbackOptions
Source§fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
fn from_arg_matches(__clap_arg_matches: &ArgMatches) -> Result<Self, Error>
Source§fn from_arg_matches_mut(
__clap_arg_matches: &mut ArgMatches,
) -> Result<Self, Error>
fn from_arg_matches_mut( __clap_arg_matches: &mut ArgMatches, ) -> Result<Self, Error>
Source§fn update_from_arg_matches(
&mut self,
__clap_arg_matches: &ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches( &mut self, __clap_arg_matches: &ArgMatches, ) -> Result<(), Error>
ArgMatches to self.Source§fn update_from_arg_matches_mut(
&mut self,
__clap_arg_matches: &mut ArgMatches,
) -> Result<(), Error>
fn update_from_arg_matches_mut( &mut self, __clap_arg_matches: &mut ArgMatches, ) -> Result<(), Error>
ArgMatches to self.