This is an automated email from the ASF dual-hosted git repository.
kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-erlang.git
The following commit(s) were added to refs/heads/main by this push:
new 1099b00 chore: Remove Redundant 'CI' suffix (#98)
1099b00 is described below
commit 1099b008f72b9188c93b8a95ff9dc2ae83b6bb82
Author: Benjamin Philip <[email protected]>
AuthorDate: Wed Jul 8 19:03:51 2026 +0530
chore: Remove Redundant 'CI' suffix (#98)
## What issue does this PR fix?
The GitHub Actions workflows had a redundant 'CI' suffix in their title
and filenames.
## What's changed
This suffix has been removed.
---
.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(-)
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: