From e596185f144067fbe2af837635d8060843638c57 Mon Sep 17 00:00:00 2001 From: Bjorn Lammers Date: Tue, 16 Aug 2022 18:56:28 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=E2=80=8D=E2=99=82=EF=B8=8F=20Adds?= =?UTF-8?q?=20CI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/_template_to_readme.yml | 32 +++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/_template_to_readme.yml diff --git a/.github/workflows/_template_to_readme.yml b/.github/workflows/_template_to_readme.yml new file mode 100644 index 00000000..c1ae552e --- /dev/null +++ b/.github/workflows/_template_to_readme.yml @@ -0,0 +1,32 @@ +name: 👉 Template to Readme + +on: + push: + workflow_dispatch: +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v2 + + - name: Setup Python + uses: actions/setup-python@v1 + with: + python-version: "3.9" + architecture: "x64" + + - name: Template to Readme + run: |- + python _ci.py + cat README.md + + - name: Load to GitHub + run: |- + git diff + git config --global user.email "noreply@walkx.org" + git config --global user.name "Template to Readme" + git add -A + git commit -m "👉 Converts _template to readme" || exit 0 + git push