-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (34 loc) · 996 Bytes
/
assort.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: run assort.py
on:
push
# paths:
# - 'origins.md'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git.checkout
uses: actions/checkout@v4
- name: Python.setup
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Python.install-packages
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Python.execute
env:
SOME_SECRET: ${{ secrets.AQ }}
run: python assort.py
# - name: Git.commit
# run: |
# git config --local user.email "[email protected]"
# git config --local user.name "GitHub Actions"
# git add -A
# git diff-index --quiet HEAD || (git commit -a -m "updated logs" --allow-empty)
# - name: Git.push
# uses: ad-m/[email protected]
# with:
# github_token: ${{ secrets.STIG }}
# branch: origin