Skip to content

Commit

Permalink
Phishing domain
Browse files Browse the repository at this point in the history
  • Loading branch information
spirillen committed Jan 19, 2025
1 parent 295cbf9 commit 2c4a41e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/sort.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- name: Print sort_lists version
run: |
python -c "import tools.sort_lists; print(f'Sort Lists Version: {tools.sort_lists.VERSION}')"
python tools/sort_lists.py -v
- name: Check for changes in source folder
id: changed_files
run: |
Expand All @@ -38,9 +39,11 @@ jobs:
python tools/sort_lists.py
- name: Commit changes
if: env.changed_files
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git config --local user.email "[email protected].jackfan.us.kg"
git config --local user.name "spirillen"
git add source/
git commit -m "Sort CSV files" -a
git push
2 changes: 1 addition & 1 deletion tools/sort_lists.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import idna
import json

VERSION = "0.2b25" # Incremented beta version
VERSION = "0.2b24" # Incremented beta version

def find_files_by_name(directory, filenames):
matches = []
Expand Down

0 comments on commit 2c4a41e

Please sign in to comment.