-
-
Notifications
You must be signed in to change notification settings - Fork 106
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
feat: Re-write of directory_writer in Julia #190
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #190 +/- ##
=======================================
Coverage 97.60% 97.60%
=======================================
Files 142 142
Lines 1796 1796
=======================================
Hits 1753 1753
Misses 43 43 ☔ View full report in Codecov by Sentry. |
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/$GITHUB_REPOSITORY | ||
git add DIRECTORY.md | ||
git commit -am "updating DIRECTORY.md" || true | ||
git push --force origin HEAD:$GITHUB_REF || true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This won't work as the main
branch is protected. We need to create a pull request, and then merge it, just like the previous workflow.
Co-authored-by: David Leal <[email protected]>
Co-authored-by: David Leal <[email protected]>
Co-authored-by: David Leal <[email protected]>
Wrote
directory_writer.jl
and changeddirectory_writer.yml
to use this file to build directory, rather than using a python script.