Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name: Continuous Integration
on:
pull_request:
branches: ['**', '!update/**', '!pr/**']
types: []
types: [locked]
push:
branches: ['**', '!update/**', '!pr/**']
tags: [v*]
Expand Down
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ ThisBuild / githubWorkflowBuild := {
}
}
// Disable running CI for Pull Requests (a normal push already triggers CI)
ThisBuild / githubWorkflowPREventTypes := Seq.empty
// We set an uncommon status instead of empty because passing an empty list seems to make
// GHA use the default trigger event types..
ThisBuild / githubWorkflowPREventTypes := Seq(PREventType.Locked)
ThisBuild / githubWorkflowBuildPostamble ++= Seq(
WorkflowStep.Sbt(
commands = List("checkGitNoUncommittedChanges"),
Expand Down