Browse Source

CI: Shorten job and step labels in workflow files

Sebastian Beckmann 2 years ago
parent
commit
211a812cc7

+ 5 - 5
.github/workflows/build-project.yaml

@@ -3,7 +3,7 @@ on:
   workflow_call:
 jobs:
   check-event:
-    name: Check GitHub Event Data 📡
+    name: Event Data 🔎
     runs-on: ubuntu-22.04
     defaults:
       run:
@@ -58,7 +58,7 @@ jobs:
           echo "commitHash=${GITHUB_SHA:0:9}" >> $GITHUB_OUTPUT
 
   macos-build:
-    name: Build for macOS 🍏
+    name: macOS 🍏
     runs-on: macos-13
     needs: check-event
     strategy:
@@ -173,7 +173,7 @@ jobs:
           key: ${{ runner.os }}-ccache-${{ matrix.target }}-${{ needs.check-event.outputs.config }}
 
   ubuntu-build:
-    name: Build for Ubuntu 🐧
+    name: Ubuntu 🐧
     runs-on: ubuntu-22.04
     needs: check-event
     defaults:
@@ -242,7 +242,7 @@ jobs:
           key: ${{ runner.os }}-ccache-x86_64-${{ needs.check-event.outputs.config }}
 
   flatpak-build:
-    name: Build Application for Flatpak 📦
+    name: Flatpak 📦
     runs-on: ubuntu-22.04
     needs: check-event
     defaults:
@@ -297,7 +297,7 @@ jobs:
           cache-key: ${{ steps.setup.outputs.cacheKey }}
 
   windows-build:
-    name: Build for Windows 🪟
+    name: Windows 🪟
     runs-on: windows-2022
     needs: check-event
     defaults:

+ 1 - 1
.github/workflows/dispatch.yaml

@@ -32,7 +32,7 @@ permissions:
   contents: write
 jobs:
   services-validation:
-    name: Check Services Configuration Files 🕵️
+    name: Validate Services 🕵️
     if: github.repository_owner == 'obsproject' && inputs.job == 'services'
     runs-on: macos-13
     permissions:

+ 5 - 5
.github/workflows/pr-pull.yaml

@@ -1,4 +1,4 @@
-name: Pull Request
+name: Pull
 run-name: ${{ github.event.pull_request.title }} pull request run 🚀
 on:
   workflow_dispatch:
@@ -14,20 +14,20 @@ concurrency:
   cancel-in-progress: true
 jobs:
   check-format:
-    name: Check Formatting 🔍
+    name: Format 🔍
     uses: ./.github/workflows/check-format.yaml
     permissions:
       contents: read
 
   build-project:
-    name: Build Project 🧱
+    name: Build 🧱
     uses: ./.github/workflows/build-project.yaml
     secrets: inherit
     permissions:
       contents: read
 
   compatibility-validation:
-    name: Validate Compatibility Data 🕵️
+    name: Validate Compatibility 🕵️
     if: github.base_ref == 'master'
     runs-on: ubuntu-22.04
     permissions:
@@ -49,7 +49,7 @@ jobs:
         uses: ./.github/actions/compatibility-validator
 
   services-validation:
-    name: Validate Services Data 🕵️
+    name: Validate Services 🕵️
     if: github.base_ref == 'master'
     runs-on: ubuntu-22.04
     permissions:

+ 1 - 1
.github/workflows/publish.yaml

@@ -41,7 +41,7 @@ jobs:
           esac
 
   flatpak-publish:
-    name: Publish to Flathub 📦
+    name: Flathub 📦
     needs: check-tag
     if: github.repository_owner == 'obsproject' && fromJSON(needs.check-tag.outputs.validTag)
     runs-on: ubuntu-22.04

+ 5 - 5
.github/workflows/push.yaml

@@ -1,4 +1,4 @@
-name: Push to master and release branches
+name: Push
 run-name: ${{ github.ref_name }} push run 🚀
 on:
   push:
@@ -16,21 +16,21 @@ concurrency:
   cancel-in-progress: ${{ fromJSON(github.ref_type == 'tag') }}
 jobs:
   check-format:
-    name: Check Formatting 🔍
+    name: Format 🔍
     if: github.ref_name == 'master'
     uses: ./.github/workflows/check-format.yaml
     permissions:
       contents: read
 
   build-project:
-    name: Build Project 🧱
+    name: Build 🧱
     uses: ./.github/workflows/build-project.yaml
     secrets: inherit
     permissions:
       contents: read
 
   compatibility-validation:
-    name: Validate Compatibility Data 🕵️
+    name: Validate Compatibility 🕵️
     if: github.ref_name == 'master'
     runs-on: ubuntu-22.04
     permissions:
@@ -54,7 +54,7 @@ jobs:
           repositorySecret: ${{ github.token }}
 
   services-validation:
-    name: Validate Service Data 🕵️
+    name: Validate Services 🕵️
     if: github.ref_name == 'master'
     runs-on: ubuntu-22.04
     permissions:

+ 1 - 1
.github/workflows/scheduled.yaml

@@ -79,7 +79,7 @@ jobs:
           echo '::endgroup::'
 
   build-project:
-    name: Build Project 🧱
+    name: Build 🧱
     uses: ./.github/workflows/build-project.yaml
     needs: cache-cleanup
     secrets: inherit