From a66f1eeb6c685fa4fdd8803e1ccee950efd0c258 Mon Sep 17 00:00:00 2001 From: Benjamin Philip Date: Wed, 8 Jul 2026 14:32:06 +0530 Subject: [PATCH] Remove Redundant 'CI' suffix --- .github/workflows/docs.yml | 2 +- .github/workflows/{erlang-ci.yml => erlang.yml} | 2 +- .github/workflows/{rust-ci.yml => rust.yml} | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) rename .github/workflows/{erlang-ci.yml => erlang.yml} (99%) rename .github/workflows/{rust-ci.yml => rust.yml} (97%) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 8f8d8f7..dc1c220 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -15,7 +15,7 @@ # specific language governing permissions and limitations # under the License. -name: Docs CI +name: Docs on: push: pull_request: diff --git a/.github/workflows/erlang-ci.yml b/.github/workflows/erlang.yml similarity index 99% rename from .github/workflows/erlang-ci.yml rename to .github/workflows/erlang.yml index 3e04496..90f4d41 100644 --- a/.github/workflows/erlang-ci.yml +++ b/.github/workflows/erlang.yml @@ -15,7 +15,7 @@ # specific language governing permissions and limitations # under the License. -name: Erlang CI +name: Erlang on: push: branches: diff --git a/.github/workflows/rust-ci.yml b/.github/workflows/rust.yml similarity index 97% rename from .github/workflows/rust-ci.yml rename to .github/workflows/rust.yml index 2d7198a..30d3ff5 100644 --- a/.github/workflows/rust-ci.yml +++ b/.github/workflows/rust.yml @@ -15,7 +15,7 @@ # specific language governing permissions and limitations # under the License. -name: Rust CI +name: Rust on: push: branches: @@ -32,7 +32,7 @@ permissions: jobs: lint-rust: - name: Lint Rust with Clippy + name: Lint with Clippy runs-on: ubuntu-latest strategy: matrix: @@ -59,7 +59,7 @@ jobs: run: cargo clippy --manifest-path=${{ matrix.manifest }} -- -Dwarnings fmt-rust: - name: Check Rust Formatting with rustfmt + name: Check Formatting with rustfmt runs-on: ubuntu-latest strategy: matrix: