From 6ab72969a60316e9dd8308bea8812514947ec2cb Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Sun, 25 Feb 2024 10:36:16 -0500 Subject: [PATCH] Github CI: use unique Github Action names Don't use the generic "GitHub Action CI" name/label for multiple different GitHub Actions -- doing so makes it difficult to know which Action is which on the GitHub Action web UI. Instead, give them unique, descriptive names. Signed-off-by: Jeff Squyres --- .github/workflows/compile-rocm.yaml | 4 ++-- .github/workflows/ompi_mpi4py.yaml | 2 +- .github/workflows/pr-checks.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/compile-rocm.yaml b/.github/workflows/compile-rocm.yaml index d4bf54a6f7f..d041bad1d02 100644 --- a/.github/workflows/compile-rocm.yaml +++ b/.github/workflows/compile-rocm.yaml @@ -1,4 +1,4 @@ -name: GitHub Action CI +name: ROCM on: [pull_request] @@ -28,4 +28,4 @@ jobs: run: | ./autogen.pl ./configure --prefix=${PWD}/install --with-rocm=/opt/rocm --disable-mpi-fortran - LD_LIBRARY_PATH=/opt/rocm/lib make -j \ No newline at end of file + LD_LIBRARY_PATH=/opt/rocm/lib make -j diff --git a/.github/workflows/ompi_mpi4py.yaml b/.github/workflows/ompi_mpi4py.yaml index 35b4c9b25c5..1ffb5ac5755 100644 --- a/.github/workflows/ompi_mpi4py.yaml +++ b/.github/workflows/ompi_mpi4py.yaml @@ -1,4 +1,4 @@ -name: GitHub Action CI +name: mpi4py on: [pull_request] diff --git a/.github/workflows/pr-checks.yaml b/.github/workflows/pr-checks.yaml index 3ff877c9810..5c390424560 100644 --- a/.github/workflows/pr-checks.yaml +++ b/.github/workflows/pr-checks.yaml @@ -1,4 +1,4 @@ -name: GitHub Action CI +name: Git commit checks # We're using pull_request_target here instead of just pull_request so that the # action runs in the context of the base of the pull request, rather than in the