Skip to content

Commit b7b9286

Browse files
authored
chore: Name CI workflows (#2127)
* named and renamed smoke test workflows * missed those two * format
1 parent ba0bd0b commit b7b9286

13 files changed

+26
-26
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
name: Build Unity SDK
2-
1+
name: "Build Unity SDK"
32
on:
43
workflow_call:
54
inputs:

.github/workflows/ci.yml

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
name: CI
2-
1+
name: "CI"
32
on:
43
push:
54
paths-ignore:
@@ -202,7 +201,7 @@ jobs:
202201
# Lower retention period - we only need this to retry CI.
203202
retention-days: 14
204203

205-
android-smoke-test-build:
204+
smoke-test-build-android:
206205
name: Build Android ${{ matrix.unity-version }} Smoke Test
207206
if: ${{ !startsWith(github.ref, 'refs/heads/release/') }}
208207
needs: [smoke-test-create]
@@ -211,15 +210,15 @@ jobs:
211210
fail-fast: false
212211
matrix:
213212
unity-version: ["2019", "2022", "6000"]
214-
uses: ./.github/workflows/android-smoke-test-build.yml
213+
uses: ./.github/workflows/smoke-test-build-android.yml
215214
with:
216215
unity-version: ${{ matrix.unity-version }}
217216

218-
android-smoke-test-run:
217+
smoke-test-run-android:
219218
name: Run Android ${{ matrix.unity-version }} Smoke Test
220219
if: ${{ !startsWith(github.ref, 'refs/heads/release/') }}
221-
needs: [android-smoke-test-build]
222-
uses: ./.github/workflows/android-smoke-test-run.yml
220+
needs: [smoke-test-build-android]
221+
uses: ./.github/workflows/smoke-test-run-android.yml
223222
with:
224223
unity-version: ${{ matrix.unity-version }}
225224
api-level: ${{ matrix.api-level }}
@@ -231,7 +230,7 @@ jobs:
231230
init-type: ["runtime", "buildtime"]
232231
unity-version: ["2019", "2022", "6000"]
233232

234-
ios-smoke-test-build:
233+
smoke-test-build-ios:
235234
name: Build iOS ${{ matrix.unity-version }} Smoke Test
236235
if: ${{ !startsWith(github.ref, 'refs/heads/release/') }}
237236
needs: [smoke-test-create]
@@ -240,30 +239,30 @@ jobs:
240239
fail-fast: false
241240
matrix:
242241
unity-version: ["2019", "2022", "6000"]
243-
uses: ./.github/workflows/ios-smoke-test-build.yml
242+
uses: ./.github/workflows/smoke-test-build-ios.yml
244243
with:
245244
unity-version: ${{ matrix.unity-version }}
246245

247-
ios-smoke-test-compile:
246+
smoke-test-compile-ios:
248247
name: Compile iOS ${{ matrix.unity-version }} Smoke Test
249248
if: ${{ !startsWith(github.ref, 'refs/heads/release/') }}
250-
needs: [ios-smoke-test-build]
249+
needs: [smoke-test-build-ios]
251250
secrets: inherit
252251
strategy:
253252
fail-fast: false
254253
matrix:
255254
unity-version: ["2019", "2022", "6000"]
256255
init-type: ["runtime", "buildtime"]
257-
uses: ./.github/workflows/ios-smoke-test-compile.yml
256+
uses: ./.github/workflows/smoke-test-compile-ios.yml
258257
with:
259258
unity-version: ${{ matrix.unity-version }}
260259
init-type: ${{ matrix.init-type }}
261260

262-
ios-smoke-test-run:
261+
smoke-test-run-ios:
263262
name: Run iOS ${{ matrix.unity-version }} Smoke Test
264263
if: ${{ !startsWith(github.ref, 'refs/heads/release/') }}
265-
needs: [ios-smoke-test-compile]
266-
uses: ./.github/workflows/ios-smoke-test-run.yml
264+
needs: [smoke-test-compile-ios]
265+
uses: ./.github/workflows/smoke-test-run-ios.yml
267266
with:
268267
unity-version: ${{ matrix.unity-version }}
269268
ios-version: ${{ matrix.ios-version }}

.github/workflows/danger.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
name: Danger
2-
1+
name: "Danger"
32
on:
43
pull_request:
54
types: [opened, synchronize, reopened, edited, ready_for_review]

.github/workflows/format-code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: format code
1+
name: "Format Code"
22
on:
33
pull_request:
44

.github/workflows/release.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
name: Release
2-
1+
name: "Release"
32
on:
43
workflow_dispatch:
54
inputs:

.github/workflows/sdk.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
name: "Build native SDKs"
12
on:
23
workflow_call:
34
inputs:

.github/workflows/android-smoke-test-build.yml renamed to .github/workflows/smoke-test-build-android.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
name: "SmokeTest: Build Android"
12
on:
23
workflow_call:
34
inputs:

.github/workflows/ios-smoke-test-build.yml renamed to .github/workflows/smoke-test-build-ios.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
name: "SmokeTest: Build iOS"
12
on:
23
workflow_call:
34
inputs:

.github/workflows/ios-smoke-test-compile.yml renamed to .github/workflows/smoke-test-compile-ios.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
name: "SmokeTest: Compile iOS"
12
on:
23
workflow_call:
34
inputs:

.github/workflows/smoke-test-create.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
name: Create Smoke Test Project
2-
1+
name: "SmokeTest: Create Project"
32
on:
43
workflow_call:
54
inputs:

0 commit comments

Comments
 (0)