We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c5ad8d commit ba88d21Copy full SHA for ba88d21
.github/workflows/ci.yml
@@ -10,7 +10,7 @@ name: Continuous Integration
10
on:
11
pull_request:
12
branches: ['**', '!update/**', '!pr/**']
13
- types: []
+ types: [locked]
14
push:
15
16
tags: [v*]
build.sbt
@@ -62,8 +62,9 @@ ThisBuild / githubWorkflowBuild := {
62
case other => other
63
}
64
65
+//fixme
66
// Disable running CI for Pull Requests (a normal push already triggers CI)
-ThisBuild / githubWorkflowPREventTypes := Seq.empty
67
+ThisBuild / githubWorkflowPREventTypes := Seq(PREventType.Locked)
68
ThisBuild / githubWorkflowBuildPostamble ++= Seq(
69
WorkflowStep.Sbt(
70
commands = List("checkGitNoUncommittedChanges"),
0 commit comments