From 964a71a86edae191d84e2aa6e3b7f4d541e75936 Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Tue, 2 Jun 2026 14:03:34 +0200 Subject: [PATCH] workflows/reusable.yaml: Add more names Add jobs.test.name: Packaging test - ${{ matrix.distro.name }} jobs.test.steps.name: Run packaging test on ${{ matrix.distro.name }} jobs.test.steps.uses.with.distro-name: ${{ matrix.distro.name }} In the hope that this makes the logs look nicer. Quoting from https://forgejo.org/docs/latest/user/actions/reference/ NOTE: if jobs..name is set, care must be taken that it evaluates to a unique name for each job created from the matrix, e.g. name-${{ matrix.variant }}-${{ matrix.node}} in the above example. Signed-off-by: Jan Lindemann --- .github/workflows/reusable.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/reusable.yaml b/.github/workflows/reusable.yaml index 80154b9..82a59d5 100644 --- a/.github/workflows/reusable.yaml +++ b/.github/workflows/reusable.yaml @@ -5,6 +5,7 @@ on: jobs: test: + name: Packaging test - ${{ matrix.distro.name }} runs-on: public-ci strategy: fail-fast: false @@ -17,4 +18,7 @@ jobs: image: ${{ matrix.distro.image }} steps: - - uses: ci/action-build-package@master + - name: Run packaging test on ${{ matrix.distro.name }} + uses: ci/action-build-package@master + with: + distro-name: ${{ matrix.distro.name }}