Skip to content

Commit

Permalink
Fix indentation for scheduled triggers
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch committed Apr 23, 2020
1 parent 881c158 commit c512eda
Showing 1 changed file with 2 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,10 @@ public class GitHubActionsScheduledTrigger : GitHubActionsDetailedTrigger

public override void Write(CustomFileWriter writer)
{
writer.WriteLine("schedule:");
using (writer.Indent())
{
writer.WriteLine("schedule:");
using (writer.Indent())
{
writer.WriteLine($" - cron: '{Cron}'");
}
writer.WriteLine($"- cron: '{Cron}'");
}
}
}
Expand Down

0 comments on commit c512eda

Please sign in to comment.