From b1ebbb9a1cd60d8eabad19add9b360b77a560990 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= <76261501+zecakeh@users.noreply.github.com> Date: Mon, 28 Oct 2024 15:21:20 +0100 Subject: [PATCH] Rename `.htmltest.yaml` to `.htmltest.yml` (#1985) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Rename .htmltest.yaml to .htmltest.yml This is almost nothing but htmltest expects this exact name by default, so when running the binary locally, it avoids to have to bother with providing the name of the config file. Signed-off-by: Kévin Commaille * Add changelog Signed-off-by: Kévin Commaille --------- Signed-off-by: Kévin Commaille --- .github/workflows/main.yml | 2 +- .htmltest.yaml => .htmltest.yml | 0 changelogs/internal/newsfragments/1985.clarification | 1 + 3 files changed, 2 insertions(+), 1 deletion(-) rename .htmltest.yaml => .htmltest.yml (100%) create mode 100644 changelogs/internal/newsfragments/1985.clarification diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fe0c77a4..8db6359f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -255,7 +255,7 @@ jobs: - name: "Run htmltest" uses: wjdp/htmltest-action@master with: - config: .htmltest.yaml + config: .htmltest.yml build-historical-spec: name: "📖 Build the historical backup spec" diff --git a/.htmltest.yaml b/.htmltest.yml similarity index 100% rename from .htmltest.yaml rename to .htmltest.yml diff --git a/changelogs/internal/newsfragments/1985.clarification b/changelogs/internal/newsfragments/1985.clarification new file mode 100644 index 00000000..9f01fb6f --- /dev/null +++ b/changelogs/internal/newsfragments/1985.clarification @@ -0,0 +1 @@ +Rename `.htmltest.yaml` to `.htmltest.yml`.