Skip to content

Commit

Permalink
build: run full validation when workflow definition has changed (#3881)
Browse files Browse the repository at this point in the history
  • Loading branch information
jrudolph authored Jul 20, 2021
1 parent dcc8dc6 commit a9140d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/ValidatePullRequest.scala
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ object ValidatePullRequest extends AutoPlugin {
val additionalTasks = settingKey[Seq[TaskKey[_]]]("Additional tasks for pull request validation")

// The set of (top-level) files or directories to watch for build changes.
val BuildFilesAndDirectories = Set("project", "build.sbt")
val BuildFilesAndDirectories = Set("project", "build.sbt", ".github/workflows")

def changedDirectoryIsDependency(changedDirs: Set[String], name: String, graphsToTest: Seq[(Configuration, ModuleGraph)])(log: Logger): Boolean = {
val dirsOrExperimental = changedDirs.flatMap(dir => Set(dir, s"$dir-experimental"))
Expand Down

0 comments on commit a9140d2

Please sign in to comment.