diff options
| author | Alexander <4584443+DragonStuff@users.noreply.github.com> | 2021-08-29 12:12:30 +0900 |
|---|---|---|
| committer | Alexander <4584443+DragonStuff@users.noreply.github.com> | 2021-08-29 12:12:30 +0900 |
| commit | aeda4be42c53d8a8f0c02c4be07877c3d0fda1b0 (patch) | |
| tree | 1a7c2fb4815987189524d64094dc13df74e1facb | |
| parent | e2aaa3e2f34198522c3d4824a697f80aa81ffe77 (diff) | |
| download | seaweedfs-aeda4be42c53d8a8f0c02c4be07877c3d0fda1b0.tar.xz seaweedfs-aeda4be42c53d8a8f0c02c4be07877c3d0fda1b0.zip | |
fix(ci): use cleaner naming for jobs
| -rw-r--r-- | .github/workflows/binary_test.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/cleanup.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/container_latest.yml | 3 | ||||
| -rw-r--r-- | .github/workflows/container_release.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/container_test.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/go.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/release.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/release_binaries.yml | 2 |
8 files changed, 9 insertions, 8 deletions
diff --git a/.github/workflows/binary_test.yml b/.github/workflows/binary_test.yml index 288abc848..f1f911dc9 100644 --- a/.github/workflows/binary_test.yml +++ b/.github/workflows/binary_test.yml @@ -1,4 +1,4 @@ -name: Cross-platform binary build test +name: "go: test building cross-platform binary" on: push: diff --git a/.github/workflows/cleanup.yml b/.github/workflows/cleanup.yml index 47a677e6d..34e3a481b 100644 --- a/.github/workflows/cleanup.yml +++ b/.github/workflows/cleanup.yml @@ -1,4 +1,4 @@ -name: Cleanup +name: "chore: cleanup" on: push: diff --git a/.github/workflows/container_latest.yml b/.github/workflows/container_latest.yml index 6536805db..912440966 100644 --- a/.github/workflows/container_latest.yml +++ b/.github/workflows/container_latest.yml @@ -1,4 +1,5 @@ -name: Build Latest Containers +name: "docker: build latest containers" + on: push: branches: diff --git a/.github/workflows/container_release.yml b/.github/workflows/container_release.yml index 22dc8632f..789316df8 100644 --- a/.github/workflows/container_release.yml +++ b/.github/workflows/container_release.yml @@ -1,4 +1,4 @@ -name: Build Release Containers +name: "docker: build release containers" on: push: diff --git a/.github/workflows/container_test.yml b/.github/workflows/container_test.yml index 410d1d21a..616c3c4be 100644 --- a/.github/workflows/container_test.yml +++ b/.github/workflows/container_test.yml @@ -1,4 +1,4 @@ -name: Test Building Container Images +name: "docker: test building container images" on: push: diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index d6f7bf1b9..39b8347ac 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -1,4 +1,4 @@ -name: Go +name: "go: test building binary" on: push: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f588cd95c..ac04a85dc 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,4 +1,4 @@ -name: Build Dev Binaries +name: "go: build dev binaries" on: push: diff --git a/.github/workflows/release_binaries.yml b/.github/workflows/release_binaries.yml index 0e8510d14..678f107d4 100644 --- a/.github/workflows/release_binaries.yml +++ b/.github/workflows/release_binaries.yml @@ -1,6 +1,6 @@ # This is a basic workflow to help you get started with Actions -name: Build Versioned Releases +name: "go: build versioned binaries" on: release: |
