Skip to content

Commit

Permalink
Merge pull request #602 from j-mie6/patch/exclude-test-internal
Browse files Browse the repository at this point in the history
Added `test-internal` to the ignored configs
  • Loading branch information
j-mie6 authored Jul 9, 2023
2 parents 6eeaf48 + bdc97b0 commit c5a520a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ jobs:
uses: scalacenter/sbt-dependency-submission@v2
with:
modules-ignore: sbt-typelevelJVM_2.12 docs_2.12 sbt-typelevelNative_2.12 sbt-typelevelJS_2.12
configs-ignore: test scala-tool scala-doc-tool
configs-ignore: test scala-tool scala-doc-tool test-internal

validate-steward:
name: Validate Steward Config
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ object TypelevelCiPlugin extends AutoPlugin {
WorkflowStep.DependencySubmission(
None,
Some(noPublishModulesIgnore.value.toList),
Some(List("test", "scala-tool", "scala-doc-tool")),
Some(List("test", "scala-tool", "scala-doc-tool", "test-internal")),
None
),
cond = Some("github.event_name != 'pull_request'")
Expand Down

0 comments on commit c5a520a

Please sign in to comment.