Skip to content

Commit 6ab7296

Browse files
committed
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 <jeff@squyres.com>
1 parent cb00772 commit 6ab7296

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/compile-rocm.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: GitHub Action CI
1+
name: ROCM
22

33
on: [pull_request]
44

@@ -28,4 +28,4 @@ jobs:
2828
run: |
2929
./autogen.pl
3030
./configure --prefix=${PWD}/install --with-rocm=/opt/rocm --disable-mpi-fortran
31-
LD_LIBRARY_PATH=/opt/rocm/lib make -j
31+
LD_LIBRARY_PATH=/opt/rocm/lib make -j

.github/workflows/ompi_mpi4py.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: GitHub Action CI
1+
name: mpi4py
22

33
on: [pull_request]
44

.github/workflows/pr-checks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: GitHub Action CI
1+
name: Git commit checks
22

33
# We're using pull_request_target here instead of just pull_request so that the
44
# action runs in the context of the base of the pull request, rather than in the

0 commit comments

Comments
 (0)