We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6938471 commit a7f85d7Copy full SHA for a7f85d7
.github/list_languages
@@ -11,8 +11,8 @@ def main():
11
if x.is_dir() and len(x.name) == 2 and x.name != 'en')
12
13
if 'GITHUB_ACTION' in os.environ:
14
- print(f'::set-output name=languages::{json.dumps(languages)}')
15
- for language in languages:
+ print(f'::set-output name=languages::{json.dumps(languages[:2])}')
+ for language in languages[:2]:
16
print(language)
17
18
.github/workflows/translations.yml
@@ -13,7 +13,7 @@ jobs:
list_languages:
name: List languages
runs-on: ubuntu-latest
- if: github.repository_owner == 'djangogirls'
+ if: github.repository_owner == 'ekohl'
outputs:
languages: ${{ steps.set_list.outputs.languages }}
19
steps:
0 commit comments