-
-
Notifications
You must be signed in to change notification settings - Fork 213
41 lines (32 loc) · 883 Bytes
/
master.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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"