2023-04-14 19:05:52 +02:00
|
|
|
name: 🚀 Generates README
|
2022-08-16 18:56:28 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
2023-02-15 01:46:12 +01:00
|
|
|
uses: actions/checkout@v3
|
2022-08-16 18:56:28 +02:00
|
|
|
|
|
|
|
- name: Setup Python
|
2023-02-15 01:46:12 +01:00
|
|
|
uses: actions/setup-python@v4
|
2022-08-16 18:56:28 +02:00
|
|
|
with:
|
|
|
|
python-version: "3.9"
|
|
|
|
architecture: "x64"
|
|
|
|
|
2023-04-14 19:05:52 +02:00
|
|
|
- name: Readme Generator
|
2022-08-16 18:56:28 +02:00
|
|
|
run: |-
|
|
|
|
python _ci.py
|
|
|
|
cat README.md
|
|
|
|
|
|
|
|
- name: Load to GitHub
|
|
|
|
run: |-
|
|
|
|
git diff
|
2023-04-14 19:05:52 +02:00
|
|
|
git config --global user.email "noreply@walkx.fyi"
|
|
|
|
git config --global user.name "Dashboard Icons Bot"
|
2022-08-16 18:56:28 +02:00
|
|
|
git add -A
|
2023-04-14 19:05:52 +02:00
|
|
|
git commit -m "🚀 Generates README" || exit 0
|
2022-08-16 18:56:28 +02:00
|
|
|
git push
|