Skip to content

Commit 34e09ec

Browse files
committed
five changes
1 parent 237a3c3 commit 34e09ec

File tree

3 files changed

+29
-78
lines changed

3 files changed

+29
-78
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Generate README
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
generate-readme:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- name: Set up Python
14+
uses: actions/setup-python@v4
15+
with:
16+
python-version: '3.x'
17+
- name: Install dependencies
18+
run: |
19+
python -m pip install --upgrade pip
20+
- name: Generate README
21+
run: |
22+
python generate_readme.py
23+
- name: Commit README
24+
run: |
25+
git config --local user.email "[email protected]"
26+
git config --local user.name "GitHub Action"
27+
git add README.md
28+
git commit -m "Update README.md" || echo "No changes to commit"
29+
git push

README.md

Lines changed: 0 additions & 31 deletions
This file was deleted.

generate_readme.py

Lines changed: 0 additions & 47 deletions
This file was deleted.

0 commit comments

Comments
 (0)