Skip to content

Commit 9232856

Browse files
committed
add modificações
1 parent dad9fbd commit 9232856

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

generate_images.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

github_stats.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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
"""

0 commit comments

Comments
 (0)