From 43342961afca104a75c97dba5d9e79e902b70018 Mon Sep 17 00:00:00 2001 From: Kitzunu <24550914+Kitzunu@users.noreply.github.com> Date: Mon, 27 Nov 2023 18:00:35 +0100 Subject: [PATCH] chore(CI): rename CI to easier determain which is which --- .github/workflows/codestyle.yml | 1 + .github/workflows/core-build-nopch.yml | 2 +- .github/workflows/core-build-pch.yml | 2 +- .github/workflows/sql-codestyle.yml | 2 ++ 4 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index e56b1de2bb..babb596e6f 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -9,6 +9,7 @@ jobs: matrix: os: [ubuntu-20.04] runs-on: ${{ matrix.os }} + name: C++ Codestyle if: github.repository == 'azerothcore/azerothcore-wotlk' steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/core-build-nopch.yml b/.github/workflows/core-build-nopch.yml index cff8820def..2c29bd3911 100644 --- a/.github/workflows/core-build-nopch.yml +++ b/.github/workflows/core-build-nopch.yml @@ -22,7 +22,7 @@ jobs: - os: ubuntu-20.04 compiler: gcc10 runs-on: ${{ matrix.os }} - name: ${{ matrix.os }}-${{ matrix.compiler }} + name: ${{ matrix.os }}-${{ matrix.compiler }}-nopch env: COMPILER: ${{ matrix.compiler }} if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft diff --git a/.github/workflows/core-build-pch.yml b/.github/workflows/core-build-pch.yml index 69c8eabd47..7420d2b17a 100644 --- a/.github/workflows/core-build-pch.yml +++ b/.github/workflows/core-build-pch.yml @@ -20,7 +20,7 @@ jobs: - os: ubuntu-20.04 compiler: clang12 runs-on: ${{ matrix.os }} - name: ${{ matrix.os }}-${{ matrix.compiler }} + name: ${{ matrix.os }}-${{ matrix.compiler }}-pch env: COMPILER: ${{ matrix.compiler }} if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft diff --git a/.github/workflows/sql-codestyle.yml b/.github/workflows/sql-codestyle.yml index 9149fbb698..41f726cf09 100644 --- a/.github/workflows/sql-codestyle.yml +++ b/.github/workflows/sql-codestyle.yml @@ -1,9 +1,11 @@ name: SQL Codestyle on: pull_request: + jobs: triage: runs-on: ubuntu-latest + name: SQL Codestyle if: github.repository == 'azerothcore/azerothcore-wotlk' steps: - uses: actions/checkout@v4