Skip to content

Commit 65b17af

Browse files
authored
Merge pull request #11139 from griggt/ci-run-test-sbt-by-default
CI: run `test_sbt` by default for pull requests and pushes
2 parents a20276a + 6c11548 commit 65b17af

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -241,14 +241,11 @@ jobs:
241241
- ${{ github.workspace }}/../../cache/ivy:/root/.ivy2/cache
242242
- ${{ github.workspace }}/../../cache/general:/root/.cache
243243
if: "github.event_name == 'schedule' && github.repository == 'lampepfl/dotty'
244-
|| (
245-
github.event_name == 'push'
246-
&& startsWith(github.event.ref, 'refs/tags/')
247-
)
244+
|| github.event_name == 'push'
248245
|| (
249246
github.event_name == 'pull_request'
250247
&& !contains(github.event.pull_request.body, '[skip ci]')
251-
&& contains(github.event.pull_request.body, '[test_sbt]')
248+
&& !contains(github.event.pull_request.body, '[skip test_sbt]')
252249
)"
253250

254251
steps:

0 commit comments

Comments
 (0)