-
-
Notifications
You must be signed in to change notification settings - Fork 234
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 #354 from mitchellkrogza/dev-autosort-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.