diff --git a/.github/workflows/android-build.yml b/.github/workflows/android-build.yml index 85cde7dd..ad831f29 100644 --- a/.github/workflows/android-build.yml +++ b/.github/workflows/android-build.yml @@ -1,4 +1,4 @@ -name: Android Build +name: "Build: Android" on: workflow_dispatch: workflow_call: diff --git a/.github/workflows/client-image.yml b/.github/workflows/client-image.yml index 4093a95a..2d6bba9d 100644 --- a/.github/workflows/client-image.yml +++ b/.github/workflows/client-image.yml @@ -1,4 +1,4 @@ -name: Client App Image CI/CD +name: "Docker: Client" on: workflow_dispatch: diff --git a/.github/workflows/codeql-client.yml b/.github/workflows/codeql-client.yml index 00410798..1fd5463f 100644 --- a/.github/workflows/codeql-client.yml +++ b/.github/workflows/codeql-client.yml @@ -9,7 +9,7 @@ # the `language` matrix defined below to confirm you have the correct set of # supported CodeQL languages. # -name: "CodeQL Analysis Client" +name: "CodeQL: Client" on: push: diff --git a/.github/workflows/codeql-coordinator.yml b/.github/workflows/codeql-coordinator.yml index 95134513..99b7d035 100644 --- a/.github/workflows/codeql-coordinator.yml +++ b/.github/workflows/codeql-coordinator.yml @@ -9,7 +9,7 @@ # the `language` matrix defined below to confirm you have the correct set of # supported CodeQL languages. # -name: "CodeQL Analysis Coordinator" +name: "CodeQL: Coordinator" on: push: diff --git a/.github/workflows/coordinator-image.yml b/.github/workflows/coordinator-image.yml index 85aa275d..0fa73017 100644 --- a/.github/workflows/coordinator-image.yml +++ b/.github/workflows/coordinator-image.yml @@ -1,4 +1,4 @@ -name: Coodinator Image CI +name: "Docker: Coordinator" on: workflow_dispatch: diff --git a/.github/workflows/django-test.yml b/.github/workflows/django-test.yml index 2c7ca0c8..d293957e 100644 --- a/.github/workflows/django-test.yml +++ b/.github/workflows/django-test.yml @@ -1,4 +1,4 @@ -name: Django Tests +name: "Test: Coordinator" on: workflow_dispatch: diff --git a/.github/workflows/frontend-build.yml b/.github/workflows/frontend-build.yml index ecaa69f2..4c5bfab1 100644 --- a/.github/workflows/frontend-build.yml +++ b/.github/workflows/frontend-build.yml @@ -1,4 +1,4 @@ -name: Frontend Test & Build +name: "Build: Frontend All Bundles" on: workflow_dispatch: diff --git a/.github/workflows/linter.yml b/.github/workflows/js-linter.yml similarity index 91% rename from .github/workflows/linter.yml rename to .github/workflows/js-linter.yml index 4e35dbf8..2805b8a4 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/js-linter.yml @@ -1,4 +1,4 @@ -name: Lint +name: "Lint: Javascript Client" on: # Trigger the workflow on push or pull request, @@ -6,9 +6,13 @@ on: push: branches: - main + paths: + - frontend pull_request: branches: - main + paths: + - frontend jobs: run-linters: diff --git a/.github/workflows/py-linter.yml b/.github/workflows/py-linter.yml index 463758d9..068a293b 100644 --- a/.github/workflows/py-linter.yml +++ b/.github/workflows/py-linter.yml @@ -1,4 +1,4 @@ -name: Python Backend Lint +name: "Lint: Python Coordinator" on: push: