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.
This commit is contained in:
Tim van der Meij 2023-10-28 20:15:25 +02:00
parent 9d6cdf216d
commit 4845d35c50
No known key found for this signature in database
GPG Key ID: 8C3FD2925A5F2762

View File

@ -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