Skip to content

Commit a7f85d7

Browse files
committed
WIP
1 parent 6938471 commit a7f85d7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/list_languages

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ def main():
1111
if x.is_dir() and len(x.name) == 2 and x.name != 'en')
1212

1313
if 'GITHUB_ACTION' in os.environ:
14-
print(f'::set-output name=languages::{json.dumps(languages)}')
15-
for language in languages:
14+
print(f'::set-output name=languages::{json.dumps(languages[:2])}')
15+
for language in languages[:2]:
1616
print(language)
1717

1818

.github/workflows/translations.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
list_languages:
1414
name: List languages
1515
runs-on: ubuntu-latest
16-
if: github.repository_owner == 'djangogirls'
16+
if: github.repository_owner == 'ekohl'
1717
outputs:
1818
languages: ${{ steps.set_list.outputs.languages }}
1919
steps:

0 commit comments

Comments
 (0)