From ff308b36af61c50cf977bb74db934b4018fb653a Mon Sep 17 00:00:00 2001 From: Daniel Rainer Date: Thu, 9 Oct 2025 17:26:07 +0200 Subject: [PATCH] ci: rename workflows The new names are consistently formulated as commands. `main` is not very descriptive, so change it to `test`, which is more informative and accurate. `rust_checks` are replaced be the more general `lint` in preparation for non-Rust-related checks. These changes were suggested in https://github.com/fish-shell/fish-shell/pull/11918#discussion_r2415957733 Closes #11922 --- .../workflows/{docker_builds.yml => build_docker_images.yml} | 2 +- .github/workflows/{rust_checks.yml => lint.yml} | 2 +- .github/workflows/{main.yml => test.yml} | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{docker_builds.yml => build_docker_images.yml} (98%) rename .github/workflows/{rust_checks.yml => lint.yml} (98%) rename .github/workflows/{main.yml => test.yml} (99%) diff --git a/.github/workflows/docker_builds.yml b/.github/workflows/build_docker_images.yml similarity index 98% rename from .github/workflows/docker_builds.yml rename to .github/workflows/build_docker_images.yml index a2b579e02..5358505e9 100644 --- a/.github/workflows/docker_builds.yml +++ b/.github/workflows/build_docker_images.yml @@ -1,4 +1,4 @@ -name: Docker test image builds +name: Build Docker test images on: push: diff --git a/.github/workflows/rust_checks.yml b/.github/workflows/lint.yml similarity index 98% rename from .github/workflows/rust_checks.yml rename to .github/workflows/lint.yml index ed0827fb2..8c2ec3e61 100644 --- a/.github/workflows/rust_checks.yml +++ b/.github/workflows/lint.yml @@ -1,4 +1,4 @@ -name: Rust checks +name: Lint on: [push, pull_request] diff --git a/.github/workflows/main.yml b/.github/workflows/test.yml similarity index 99% rename from .github/workflows/main.yml rename to .github/workflows/test.yml index fb582e8b9..4927ad005 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: make fish_run_tests +name: Test on: [push, pull_request]