forked from Phishing-Database/phishing
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Phishing-Database#354 from mitchellkrogza/dev-auto…
…sort-lists Dev autosort lists script
- Loading branch information
Showing
8 changed files
with
419 additions
and
355 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Sort sources hierarchical | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- master | ||
- main | ||
- dev-autosort-lists | ||
|
||
jobs: | ||
sort: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: write | ||
|
||
steps: | ||
- name: Checkout the repo | ||
uses: actions/checkout@main | ||
|
||
- name: Setup Python 3.11 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: 3.11 | ||
|
||
- name: Install requirements | ||
run: | | ||
pip install --no-cache-dir -r requirements.txt | ||
- name: 'Sort the lists hierarchical' | ||
run: | | ||
bash "${{ github.workspace }}/tools/hierarchical_sort.sh" | ||
- name: Git Status | ||
run: git status | ||
|
||
- name: Commit all changed files back to the repository | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: "Hierarchical sorted the lists" |
Oops, something went wrong.