From 0bbad389291b9e4f8e15d6f0e2d2bca71227f63b Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 3 May 2022 09:07:47 +0100 Subject: [PATCH] Must it really be single quotes only? --- .github/workflows/static_analysis.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static_analysis.yaml b/.github/workflows/static_analysis.yaml index 9257c1ad2c..b9f5ad0f69 100644 --- a/.github/workflows/static_analysis.yaml +++ b/.github/workflows/static_analysis.yaml @@ -36,7 +36,7 @@ jobs: - name: "Get modified files" id: changed_files - if: github.event_name == "pull_request" + if: github.event_name == 'pull_request' uses: tj-actions/changed-files@v19 with: files: | @@ -45,7 +45,7 @@ jobs: src/i18n/strings/en_EN.json - name: "Assert only en_EN was modified" - if: github.event_name == "pull_request" && steps.changed_files.outputs.any_modified + if: github.event_name == 'pull_request' && steps.changed_files.outputs.any_modified run: | echo "You can only modify en_EN.json, do not touch any of the other i18n files as Weblate will be confused" exit 1