From 5ba38927a5c79273cdf303a89009017e1b80bc9e Mon Sep 17 00:00:00 2001 From: Birger Schacht Date: Thu, 21 Nov 2024 16:09:11 +0100 Subject: [PATCH] ci(djlint): change the name of the workflow to reflect what it does The workflow we are including does call djlint with `--check` option, which checks the formatting of the the template, but does not lint the template. Therefore using `Formatter` instead of `Linter` in the template is more correct. Closes: #1371 --- .github/workflows/djlint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/djlint.yml b/.github/workflows/djlint.yml index f29574a30..e2e9fdd58 100644 --- a/.github/workflows/djlint.yml +++ b/.github/workflows/djlint.yml @@ -1,6 +1,6 @@ #SPDX-FileCopyrightText: 2023 Birger Schacht #SPDX-License-Identifier: MIT -name: Run djLint Linter +name: Run djLint Formatter on: [push, pull_request]