From 36f56f310050733c4cbbc847d32efe59020c6d57 Mon Sep 17 00:00:00 2001 From: Max de Groot <7687218+MaximumFX@users.noreply.github.com> Date: Wed, 10 Apr 2024 14:26:27 +0200 Subject: [PATCH] Add update readme workflow --- .github/workflows/update-readme.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/update-readme.yml diff --git a/.github/workflows/update-readme.yml b/.github/workflows/update-readme.yml new file mode 100644 index 0000000..ea50985 --- /dev/null +++ b/.github/workflows/update-readme.yml @@ -0,0 +1,21 @@ +name: Update README.md + +on: + workflow_dispatch: + push: + branches: + - dev + paths: + - "info.yml" + +permissions: + contents: write + +jobs: + run: + name: Generating README.md + runs-on: ubuntu-latest + steps: + - uses: MaximumFX/tk-readme-generator@v1.0.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }}