File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ name: Continuous Integration
1010on :
1111 pull_request :
1212 branches : ['**', '!update/**', '!pr/**']
13- types : []
13+ types : [locked ]
1414 push :
1515 branches : ['**', '!update/**', '!pr/**']
1616 tags : [v*]
Original file line number Diff line number Diff line change @@ -63,7 +63,9 @@ ThisBuild / githubWorkflowBuild := {
6363 }
6464}
6565// Disable running CI for Pull Requests (a normal push already triggers CI)
66- ThisBuild / githubWorkflowPREventTypes := Seq .empty
66+ // We set an uncommon status instead of empty because passing an empty list seems to make
67+ // GHA use the default trigger event types..
68+ ThisBuild / githubWorkflowPREventTypes := Seq (PREventType .Locked )
6769ThisBuild / githubWorkflowBuildPostamble ++= Seq (
6870 WorkflowStep .Sbt (
6971 commands = List (" checkGitNoUncommittedChanges" ),
You can’t perform that action at this time.
0 commit comments