From 36d41bb9b77595efd0414309f17ad4c2859a67cb Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Wed, 12 Jun 2024 19:40:20 -0400 Subject: [PATCH] chore: make job and workflow names intuitive Signed-off-by: Rui Chen --- .github/workflows/atlantis-image.yml | 2 +- .github/workflows/codeql.yml | 4 ++-- .github/workflows/lint.yml | 4 ++-- .github/workflows/test.yml | 4 ++-- .github/workflows/testing-env-image.yml | 4 ++-- .github/workflows/website.yml | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/atlantis-image.yml b/.github/workflows/atlantis-image.yml index d73272321..76eefc74d 100644 --- a/.github/workflows/atlantis-image.yml +++ b/.github/workflows/atlantis-image.yml @@ -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] diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 3d9a59b0a..f1125d841 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -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"' diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 750e0aba1..2c864413f 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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"' diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 013d7ddf7..04c04b368 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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"' diff --git a/.github/workflows/testing-env-image.yml b/.github/workflows/testing-env-image.yml index c5997cf27..26c554219 100644 --- a/.github/workflows/testing-env-image.yml +++ b/.github/workflows/testing-env-image.yml @@ -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"' \ No newline at end of file + - run: 'echo "No build required"' diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 36ceb743c..dc9da7e77 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -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"'