Skip to content

Commit

Permalink
Update GenerateCommitMessageService.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
guibranco authored Dec 12, 2024
1 parent fc0d041 commit 1f407ff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class GenerateCommitMessageService
/// <summary>
/// Regular expression to detect merge conflict resolution messages.
/// </summary>
private static readonly Regex MergeConflictPattern = new Regex(
private static readonly Regex MergeConflictPattern = new (

Check warning on line 20 in Src/AiCommitMessage/Services/GenerateCommitMessageService.cs

View workflow job for this annotation

GitHub Actions / SonarCloud Analysis

Pass a timeout to limit the execution time. (https://rules.sonarsource.com/csharp/RSPEC-6444)

Check warning on line 20 in Src/AiCommitMessage/Services/GenerateCommitMessageService.cs

View workflow job for this annotation

GitHub Actions / SonarCloud Analysis

Pass a timeout to limit the execution time. (https://rules.sonarsource.com/csharp/RSPEC-6444)

Check warning on line 20 in Src/AiCommitMessage/Services/GenerateCommitMessageService.cs

View workflow job for this annotation

GitHub Actions / SonarCloud Analysis

Pass a timeout to limit the execution time. (https://rules.sonarsource.com/csharp/RSPEC-6444)

Check warning on line 20 in Src/AiCommitMessage/Services/GenerateCommitMessageService.cs

View workflow job for this annotation

GitHub Actions / SonarCloud Analysis

Pass a timeout to limit the execution time. (https://rules.sonarsource.com/csharp/RSPEC-6444)
@"^Merge branch '.*' into .*$",
RegexOptions.Compiled
);
Expand Down

0 comments on commit 1f407ff

Please sign in to comment.