Skip to content

Commit ba88d21

Browse files
committed
Disable PR events from triggering CI
1 parent 5c5ad8d commit ba88d21

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name: Continuous Integration
1010
on:
1111
pull_request:
1212
branches: ['**', '!update/**', '!pr/**']
13-
types: []
13+
types: [locked]
1414
push:
1515
branches: ['**', '!update/**', '!pr/**']
1616
tags: [v*]

build.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,9 @@ ThisBuild / githubWorkflowBuild := {
6262
case other => other
6363
}
6464
}
65+
//fixme
6566
// Disable running CI for Pull Requests (a normal push already triggers CI)
66-
ThisBuild / githubWorkflowPREventTypes := Seq.empty
67+
ThisBuild / githubWorkflowPREventTypes := Seq(PREventType.Locked)
6768
ThisBuild / githubWorkflowBuildPostamble ++= Seq(
6869
WorkflowStep.Sbt(
6970
commands = List("checkGitNoUncommittedChanges"),

0 commit comments

Comments
 (0)