Skip to content

Commit f4920f1

Browse files
committed
chore(ci): only notify after build.
1 parent 6b8968e commit f4920f1

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -275,10 +275,7 @@ jobs:
275275
# Notify only once - when CI completes (and after deploy) in case it's successful
276276
notify-complete:
277277
needs: [
278-
tests,
279-
docs-check,
280-
mypy-version-check,
281-
pre-commit,
278+
build,
282279
build-linux-online
283280
]
284281
runs-on: ubuntu-22.04
@@ -308,7 +305,12 @@ jobs:
308305
build:
309306
if: always()
310307
name: "Build"
311-
needs: [ tests, docs-check, mypy-version-check, pre-commit ]
308+
needs: [
309+
tests,
310+
docs-check,
311+
mypy-version-check,
312+
pre-commit,
313+
]
312314
runs-on: ubuntu-22.04
313315

314316
steps:

0 commit comments

Comments
 (0)