Skip to content

Commit

Permalink
Declare few more files as DocumentationChanges
Browse files Browse the repository at this point in the history
  • Loading branch information
IT-VBFK authored and dennisdoomen committed Feb 4, 2023
1 parent 214dd22 commit 8d8cfe5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,12 @@ void ReportTestOutcome(params string[] globFilters)
});

bool HasDocumentationChanges =>
Changes.Any(x => x.StartsWith("docs"));
Changes.Any(x =>
x.StartsWith("docs") ||
x.StartsWith("CONTRIBUTING.md") ||
x.StartsWith("cSpell.json") ||
x.StartsWith("LICENSE") ||
x.StartsWith("README.md"));

bool HasSourceChanges =>
Changes.Any(x => !x.StartsWith("docs"));
Expand Down

0 comments on commit 8d8cfe5

Please sign in to comment.