@@ -23,16 +23,16 @@ impl Jobs {
2323}
2424
2525/// Represents the configuration for a GitHub workflow.
26- ///
27- /// A workflow is a configurable automated process made up of one or more jobs.
28- /// This struct defines the properties that can be set in a workflow YAML file
29- /// for GitHub Actions, including the name, environment variables, permissions,
26+ ///
27+ /// A workflow is a configurable automated process made up of one or more jobs.
28+ /// This struct defines the properties that can be set in a workflow YAML file
29+ /// for GitHub Actions, including the name, environment variables, permissions,
3030/// jobs, concurrency settings, and more.
3131#[ derive( Debug , Default , Setters , Serialize , Deserialize , Clone ) ]
3232#[ serde( rename_all = "kebab-case" ) ]
3333#[ setters( strip_option, into) ]
3434pub struct Workflow {
35- /// The name of the workflow. GitHub displays the names of your workflows
35+ /// The name of the workflow. GitHub displays the names of your workflows
3636 /// under your repository's "Actions" tab.
3737 #[ serde( skip_serializing_if = "Option::is_none" ) ]
3838 pub name : Option < String > ,
@@ -41,12 +41,12 @@ pub struct Workflow {
4141 #[ serde( skip_serializing_if = "Option::is_none" ) ]
4242 pub env : Option < Env > ,
4343
44- /// The name for workflow runs generated from the workflow.
44+ /// The name for workflow runs generated from the workflow.
4545 /// GitHub displays the workflow run name in the list of workflow runs.
4646 #[ serde( skip_serializing_if = "Option::is_none" ) ]
4747 pub run_name : Option < String > ,
4848
49- /// The event that triggers the workflow. This can include events like
49+ /// The event that triggers the workflow. This can include events like
5050 /// `push`, `pull_request`, etc.
5151 #[ serde( skip_serializing_if = "Option::is_none" ) ]
5252 pub on : Option < Event > ,
@@ -59,7 +59,7 @@ pub struct Workflow {
5959 #[ serde( skip_serializing_if = "Option::is_none" ) ]
6060 pub jobs : Option < Jobs > ,
6161
62- /// Concurrency settings for the workflow, allowing control over
62+ /// Concurrency settings for the workflow, allowing control over
6363 /// how jobs are executed.
6464 #[ serde( skip_serializing_if = "Option::is_none" ) ]
6565 pub concurrency : Option < Concurrency > ,
0 commit comments