From 52733fc15ab2c05ddeb7a138e9ca645b9bc877db Mon Sep 17 00:00:00 2001 From: Bjorn Lammers Date: Fri, 14 Apr 2023 19:05:52 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Changes=20README=20generator=20s?= =?UTF-8?q?ettings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bjorn Lammers --- .../{_template_to_readme.yml => _readme_generator.yml} | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) rename .github/workflows/{_template_to_readme.yml => _readme_generator.yml} (63%) diff --git a/.github/workflows/_template_to_readme.yml b/.github/workflows/_readme_generator.yml similarity index 63% rename from .github/workflows/_template_to_readme.yml rename to .github/workflows/_readme_generator.yml index 610d0c5..c45153b 100644 --- a/.github/workflows/_template_to_readme.yml +++ b/.github/workflows/_readme_generator.yml @@ -1,4 +1,4 @@ -name: 👉 Template to Readme +name: 🚀 Generates README on: push: @@ -17,7 +17,7 @@ jobs: python-version: "3.9" architecture: "x64" - - name: Template to Readme + - name: Readme Generator run: |- python _ci.py cat README.md @@ -25,8 +25,8 @@ jobs: - name: Load to GitHub run: |- git diff - git config --global user.email "noreply@walkx.org" - git config --global user.name "Template to Readme" + git config --global user.email "noreply@walkx.fyi" + git config --global user.name "Dashboard Icons Bot" git add -A - git commit -m "👉 Converts _template to readme" || exit 0 + git commit -m "🚀 Generates README" || exit 0 git push