Skip to content

Commit 113a32b

Browse files
committed
Make CI workflow runs more concise
1 parent 30a2160 commit 113a32b

File tree

6 files changed

+12
-7
lines changed

6 files changed

+12
-7
lines changed

.github/workflows/cd-sideload-preview.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@
1111
# 4. Sign the package
1212
# 5. Publish the package to Azure
1313

14-
name: Files CD (Sideload Preview)
14+
name: Files CD
1515

1616
on:
1717
workflow_dispatch:
1818

1919
jobs:
2020
build:
21+
name: Deploy (Sideload Preview)
2122
runs-on: windows-latest
2223
environment: Deployments
2324
strategy:

.github/workflows/cd-sideload-stable.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@
1111
# 4. Sign the package
1212
# 5. Publish the package to Azure
1313

14-
name: Files CD (Sideload Stable)
14+
name: Files CD
1515

1616
on:
1717
workflow_dispatch:
1818

1919
jobs:
2020
build:
21+
name: Deploy (Sideload Stable)
2122
runs-on: windows-latest
2223
environment: Deployments
2324
strategy:

.github/workflows/cd-store-preview.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@
1010
# 3. Generate a msixupload file
1111
# 4. Publish the msixupload to GitHub Actions
1212

13-
name: Files CD (Store Preview)
13+
name: Files CD
1414

1515
on:
1616
workflow_dispatch:
1717

1818
jobs:
1919
build:
20+
name: Deploy (Store Preview)
2021
runs-on: windows-latest
2122
environment: Deployments
2223
strategy:

.github/workflows/cd-store-stable.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,14 @@
1010
# 3. Generate a msixupload file
1111
# 4. Publish the msixupload to GitHub Actions
1212

13-
name: Files CD (Store Stable)
13+
name: Files CD
1414

1515
on:
1616
workflow_dispatch:
1717

1818
jobs:
1919
build:
20+
name: Deploy (Store Stable)
2021
runs-on: windows-latest
2122
environment: Deployments
2223
strategy:

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ env:
4646
jobs:
4747

4848
check-formatting:
49-
49+
name: Check formatting
5050
if: github.repository_owner == 'files-community'
5151

5252
runs-on: windows-latest
@@ -82,7 +82,7 @@ jobs:
8282
run: exit 1
8383

8484
build:
85-
85+
name: Build
8686
if: github.repository_owner == 'files-community'
8787

8888
runs-on: windows-latest
@@ -180,7 +180,7 @@ jobs:
180180
path: ${{ env.ARTIFACTS_STAGING_DIR }}
181181

182182
test:
183-
183+
name: Test
184184
if: github.repository_owner == 'files-community' && always()
185185

186186
needs: [build]

.github/workflows/format-xaml.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55

66
jobs:
77
format-xaml:
8+
name: Format XAML
89
if: github.event.issue.pull_request && github.event.comment.body == '/format'
910
runs-on: windows-latest
1011
environment: Pull Requests

0 commit comments

Comments
 (0)