File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -42,13 +42,13 @@ jobs:
4242 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
4343 EXCLUDED : ${{ secrets.EXCLUDED }}
4444 EXCLUDED_LANGS : ${{ secrets.EXCLUDED_LANGS }}
45- EXCLUDE_FORKED_REPOS : trues
45+ EXCLUDE_FORKED_REPOS : true
4646 GIT_EMAILS : ${{ secrets.GIT_EMAILS }}
4747
4848 # Commit all changed files to the repository
4949 - name : Commit to the repo
5050 run : |
51- git config --global user.name "AxelPCG/gitgub-stats-py "
51+ git config --global user.name "AxelPCG/gitgub-stats-modified "
5252 git config --global user.email "[email protected] " 5353 git add .
5454 # Force the build to succeed, even if no files were changed
Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ async def main() -> None:
136136 exclude_langs = excluded_langs ,
137137 ignore_forked_repos = ignore_forked_repos ,
138138 )
139+ s ._emails = email_list # Add this line
139140 await asyncio .gather (generate_languages (s ), generate_overview (s ))
140141
141142
Original file line number Diff line number Diff line change @@ -273,6 +273,7 @@ def __init__(
273273 self ._repos : Optional [Set [str ]] = None
274274 self ._lines_changed : Optional [Tuple [int , int ]] = None
275275 self ._views : Optional [int ] = None
276+ self ._emails : Optional [Set [str ]] = None # Add this line
276277
277278 async def to_str (self ) -> str :
278279 """
You can’t perform that action at this time.
0 commit comments