chore: make job and workflow names intuitive

Signed-off-by: Rui Chen <rui@chenrui.dev>
This commit is contained in:
Rui Chen
2024-06-12 19:40:20 -04:00
parent 1b5ad2c1d2
commit 36d41bb9b7
6 changed files with 11 additions and 11 deletions

View File

@@ -195,7 +195,7 @@ jobs:
skip-build:
needs: [changes]
if: needs.changes.outputs.should-run-build == 'false'
name: Build Image
name: Skip Building Image
strategy:
matrix:
image_type: [alpine, debian]

View File

@@ -105,10 +105,10 @@ jobs:
skip-analyze:
needs: [changes]
if: needs.changes.outputs.should-run-analyze == 'false'
name: Analyze
name: Skip Analyze
strategy:
matrix:
language: [ 'go', 'javascript' ]
runs-on: ubuntu-22.04
steps:
- run: 'echo "No build required"'
- run: 'echo "No build required"'

View File

@@ -1,4 +1,4 @@
name: linter
name: lint
on:
pull_request:
@@ -54,7 +54,7 @@ jobs:
skip-lint:
needs: [changes]
if: needs.changes.outputs.should-run-linting == 'false'
name: Linting
name: Skip Linting
runs-on: ubuntu-22.04
steps:
- run: 'echo "No build required"'

View File

@@ -1,4 +1,4 @@
name: tester
name: test
on:
push:
@@ -96,7 +96,7 @@ jobs:
skip-test:
needs: [changes]
if: needs.changes.outputs.should-run-tests == 'false'
name: Tests
name: Skip Tests
runs-on: ubuntu-22.04
steps:
- run: 'echo "No build required"'

View File

@@ -71,7 +71,7 @@ jobs:
skip-build:
needs: [changes]
if: needs.changes.outputs.should-run-build == 'false'
name: Build Testing Env Image
name: Skip Build Testing Env Image
runs-on: ubuntu-22.04
steps:
- run: 'echo "No build required"'
- run: 'echo "No build required"'

View File

@@ -1,4 +1,4 @@
name: website
name: website-lint-check
on:
push:
@@ -100,7 +100,7 @@ jobs:
skip-link-check:
needs: [changes]
if: needs.changes.outputs.should-run-link-check == 'false'
name: Website Link Check
name: Skip Website Link Check
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'