From fe9c90321d9be987e363a63518a19f79dbf1d60f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bastian=20K=C3=B6cher?= Date: Wed, 24 Jul 2024 10:53:44 +0200 Subject: [PATCH] Improve test names The name of the "All changelog tests passing" was clashing with the name of the "All tests passing" test. Give the check features test a name. Both changes are required to mark these tests as required in github. --- .github/workflows/changelog.yml | 2 +- .github/workflows/check-features.yaml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/changelog.yml b/.github/workflows/changelog.yml index 5e955521b8..ce214b022d 100644 --- a/.github/workflows/changelog.yml +++ b/.github/workflows/changelog.yml @@ -50,7 +50,7 @@ jobs: # If you add more jobs, remember to add them to the "needs" array. confirmChangelogChecksPassed: runs-on: ubuntu-latest - name: All tests passed + name: All changelog tests passed # If any new job gets added, be sure to add it to this list needs: - verify-changelog-updated diff --git a/.github/workflows/check-features.yaml b/.github/workflows/check-features.yaml index d5b72129d0..f816bcd37e 100644 --- a/.github/workflows/check-features.yaml +++ b/.github/workflows/check-features.yaml @@ -1,5 +1,5 @@ # Various checks to verify the cargo workspace and its crates are correctly configured. -name: "Workspace" +name: "Workspace features" on: push: @@ -13,6 +13,7 @@ concurrency: cancel-in-progress: true jobs: + name: Check workspace features check: runs-on: ubuntu-22.04