Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork222
Add a Script to List Translate Progress by File and Show the Assignee#706
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
5182be8ed117aa358a00b212c2d7862fb873baa6fcd509e120ea058b53986f25f8e511File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| name: summarize_progress | ||
| on: | ||
| schedule: | ||
| - cron: '30 23 * * 5' | ||
| jobs: | ||
| ci: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| # Give the default GITHUB_TOKEN write permission to commit and push the | ||
| # added or changed files to the repository. | ||
| contents: write | ||
| steps: | ||
| - uses: actions/checkout@v2 | ||
| - name: Install poetry | ||
| uses: abatilo/actions-poetry@v2 | ||
| - name: Execute Check Process | ||
| run: | | ||
| chmod +x .scripts/summarize_progress.sh | ||
| .scripts/summarize_progress.sh | ||
| shell: bash | ||
| - uses: stefanzweifel/git-auto-commit-action@v5 | ||
| with: | ||
| commit_message: Weekly Update -- Summarize Progress |
Some generated files are not rendered by default. Learn more abouthow customized files appear on GitHub.
Uh oh!
There was an error while loading.Please reload this page.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| #!/bin/sh | ||
| WORK_DIR=.scripts | ||
| cd $WORK_DIR | ||
| source utils/install_poetry.sh | ||
| poetry lock | ||
| poetry install | ||
| poetry run bash -c " | ||
| python summarize_progress/main.py | ||
| " |
Uh oh!
There was an error while loading.Please reload this page.