File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
ci/src/main/scala/org/typelevel/sbt Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ name: Continuous Integration
99
1010on :
1111 pull_request :
12- branches : ['**', '!update/**']
12+ branches : ['**', '!update/**', '!pr/**' ]
1313 push :
14- branches : ['**', '!update/**']
14+ branches : ['**', '!update/**', '!pr/**' ]
1515 tags : [v*]
1616
1717env :
Original file line number Diff line number Diff line change @@ -50,7 +50,10 @@ object TypelevelCiPlugin extends AutoPlugin {
5050 tlCiScalafixCheck := false ,
5151 tlCiMimaBinaryIssueCheck := true ,
5252 tlCiDocCheck := true ,
53- githubWorkflowTargetBranches += " !update/**" , // ignore steward branches
53+ githubWorkflowTargetBranches ++= Seq (
54+ " !update/**" , // ignore steward branches
55+ " !pr/**" // escape-hatch to disable ci on a branch
56+ ),
5457 githubWorkflowPublishTargetBranches := Seq (),
5558 githubWorkflowBuild := {
5659
You can’t perform that action at this time.
0 commit comments