We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eef6ef0 commit eee377aCopy full SHA for eee377a
1 file changed
.github/workflows/unity-smoke-test.yml
@@ -160,6 +160,12 @@ jobs:
160
# throws PlatformNotSupportedException), and the GameCI Linux container
161
# runs Linux Mono where the same code path works. Without this job the
162
# smoke test passes even when the bug is present.
163
+ #
164
+ # Manual-only: this job runs ~20 min on a cold Unity install, is flaky
165
+ # against the unity-setup cache, and burns Windows runner minutes on
166
+ # every PR / push. Gate it behind workflow_dispatch so it only fires
167
+ # when a maintainer explicitly triggers it from the Actions tab.
168
+ if: github.event_name == 'workflow_dispatch'
169
name: Unity ${{ matrix.unityVersion }} PlayMode smoke test (Windows)
170
runs-on: windows-latest
171
strategy:
0 commit comments