Skip to content

Commit b34a7c6

Browse files
authored
Test PR for autofix (#4324)
1 parent 258d996 commit b34a7c6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/autofix.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ jobs:
77
steps:
88
- uses: actions/checkout@v4
99
- run: ./mill -i mill.scalalib.scalafmt.ScalafmtModule/
10+
- run: git clean -xdf
1011

1112
- run: git config --global user.email "[email protected]"
1213
- run: git config --global user.name "Your Name"
@@ -15,7 +16,8 @@ jobs:
1516
- run: echo "[email protected]:${{ github.event.pull_request.head.repo.full_name }}.git"
1617
- run: echo ${{ github.event.pull_request.head.ref }}
1718
- run: echo "[email protected]:${{ github.event.pull_request.head.repo.full_name }}.git" > .autofix-repo
18-
- run: echo ${{ github.event.pull_request.head.ref }}:${{ github.event.pull_request.head.ref }} > .autofix-branch
19+
- run: echo HEAD:${{ github.event.pull_request.head.ref }} > .autofix-branch
20+
1921

2022
- uses: actions/[email protected]
2123
with:

scalajslib/src/mill/scalajslib/ScalaJSModule.scala

-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import mill.scalalib.bsp.{ScalaBuildTarget, ScalaPlatform}
1515
import mill.T
1616

1717
trait ScalaJSModule extends scalalib.ScalaModule { outer =>
18-
1918
def scalaJSVersion: T[String]
2019

2120
trait ScalaJSTests extends ScalaTests with TestScalaJSModule {

0 commit comments

Comments
 (0)