From 19f0c42b2321d2625e7fd402e1d44a9dda94c1a6 Mon Sep 17 00:00:00 2001 From: oSumAtrIX Date: Sat, 12 Nov 2022 03:43:30 +0100 Subject: [PATCH] feat: `update-documentation` workflow (#6) --- .github/workflows/update-documentation.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/update-documentation.yml diff --git a/.github/workflows/update-documentation.yml b/.github/workflows/update-documentation.yml new file mode 100644 index 0000000..81b09ed --- /dev/null +++ b/.github/workflows/update-documentation.yml @@ -0,0 +1,19 @@ +name: Update documentation + +on: + repository_dispatch +jobs: + build: + name: Update documentation + runs-on: ubuntu-latest + + steps: + - name: Clone repository + uses: actions/checkout@v3 + - name: Update submodule + run: git submodule update --recursive --remote ${{ github.event.repository.full_name }} + - name: Commit changes + uses: EndBug/add-and-commit@v9 + with: + message: 'chore: update docs for ${{ github.event.repository.full_name }} to ${{github.event.client_payload.ref}}' + default_author: ReVanced \ No newline at end of file