Must it really be single quotes only?
This commit is contained in:
parent
a431363768
commit
0bbad38929
1 changed files with 2 additions and 2 deletions
4
.github/workflows/static_analysis.yaml
vendored
4
.github/workflows/static_analysis.yaml
vendored
|
@ -36,7 +36,7 @@ jobs:
|
||||||
|
|
||||||
- name: "Get modified files"
|
- name: "Get modified files"
|
||||||
id: changed_files
|
id: changed_files
|
||||||
if: github.event_name == "pull_request"
|
if: github.event_name == 'pull_request'
|
||||||
uses: tj-actions/changed-files@v19
|
uses: tj-actions/changed-files@v19
|
||||||
with:
|
with:
|
||||||
files: |
|
files: |
|
||||||
|
@ -45,7 +45,7 @@ jobs:
|
||||||
src/i18n/strings/en_EN.json
|
src/i18n/strings/en_EN.json
|
||||||
|
|
||||||
- name: "Assert only en_EN was modified"
|
- 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: |
|
run: |
|
||||||
echo "You can only modify en_EN.json, do not touch any of the other i18n files as Weblate will be confused"
|
echo "You can only modify en_EN.json, do not touch any of the other i18n files as Weblate will be confused"
|
||||||
exit 1
|
exit 1
|
||||||
|
|
Loading…
Add table
Reference in a new issue