From 4845d35c50d1e75ba5c521d7b07eee40c29dc77e Mon Sep 17 00:00:00 2001 From: Tim van der Meij Date: Sat, 28 Oct 2023 20:15:25 +0200 Subject: [PATCH] Fix the configuration path in the GitHub Actions workflow for the Fluent linter I noticed the following warning in the GitHub Actions workflow logs: `Configuration file not found: .github/linter_config.yml` The configuration file is called `fluent_linter_config.yml` instead, so this commit fixes the path so it points to the correct file. Fixes 487816b. --- .github/workflows/fluent_linter.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/fluent_linter.yml b/.github/workflows/fluent_linter.yml index df9d9c651..1baa37a03 100644 --- a/.github/workflows/fluent_linter.yml +++ b/.github/workflows/fluent_linter.yml @@ -39,4 +39,4 @@ jobs: - name: Lint Fluent reference files run: | - moz-fluent-lint ./l10n/en-US --config .github/linter_config.yml + moz-fluent-lint ./l10n/en-US --config .github/fluent_linter_config.yml