-
-
Notifications
You must be signed in to change notification settings - Fork 214
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 9 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
5182be8
PoC Complete
rockleona ed117aa
Update f-String Error and Add Shell Script
rockleona 358a00b
Add Workfile File
rockleona 212c2d7
Fix with Reviewer's Suggestion
rockleona 862fb87
Fix GitHub Action Script and pyproject.toml
rockleona 3baa6fc
Change to glob for file finding, fix variable assign error
rockleona d509e12
remove import os
rockleona 0ea058b
Add Return Type Hint
rockleona 53986f2
Add regex
rockleona 5f8e511
Update with Reviewer's Suggestion
rockleona File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
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/mark_file.sh | ||
.scripts/mark_file.sh | ||
shell: bash | ||
|
||
- uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: Weekly Update -- Marking files | ||
mattwang44 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
mattwang44 marked this conversation as resolved.
Show resolved
Hide resolved
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.