-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 970 Bytes
/
readme.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
name: Update-Readmes
on:
workflow_dispatch:
push:
pull_request:
jobs:
Update-Readmes:
runs-on: ubuntu-latest
steps:
- name: Check Out Auto Readme Repo
uses: actions/checkout@v3
with:
repository: meisnate12/Plex-Meta-Manager-People-Auto-Readme
token: ${{ secrets.GITHUB_TOKEN }}
- name: Check Out Images Repo
uses: actions/checkout@v3
with:
path: imagerepo
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: "3.10.x"
- name: Run Update Readmes
run: python auto_readme.py -n "Transparent" -s "transparent"
- name: Commit & Push Changes
working-directory: ./imagerepo
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add -A
git commit -m "Readme Update" -a
git push origin master