Skip to content

Commit

Permalink
Fix update_lexicons workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshalX committed Nov 14, 2024
1 parent 91e0335 commit 47853a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/update_lexicons.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Fetch new lexicons and regenerate code and docs

on: [ workflow_dispatch ]
on:
push:
branches:
- fix-update-lexicons-workflow

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion update_lexicons.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def main() -> None:
commit_message = f'Update lexicons fetched from {sha[:7]} committed {commit_date}'
_print(f'Commit message: {commit_message}')

print(commit_message) # noqa: T201
print(commit_message, end='') # noqa: T201


if __name__ == '__main__':
Expand Down

0 comments on commit 47853a0

Please sign in to comment.