From 1d76f4f3e95484015047ca86dd587ea4dcb44922 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Wed, 3 Jun 2026 07:14:26 +0200 Subject: [PATCH] workflows/reusable.yaml: Remove distro from step name The section header "Run packaging test on ${{ matrix.distro.name }}" doesn't get the distro name expanded in the run log's section header for whatever reason. It only adds redundant and, hence, slightly confusing information, so remove it. Signed-off-by: Jan Lindemann --- .github/workflows/reusable.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/reusable.yaml b/.github/workflows/reusable.yaml index 82a59d5..bf5537f 100644 --- a/.github/workflows/reusable.yaml +++ b/.github/workflows/reusable.yaml @@ -18,7 +18,7 @@ jobs: image: ${{ matrix.distro.image }} steps: - - name: Run packaging test on ${{ matrix.distro.name }} + - name: Run packaging test uses: ci/action-build-package@master with: distro-name: ${{ matrix.distro.name }}