mirror of
https://github.com/revanced/revanced-documentation.git
synced 2024-10-31 16:53:49 +01:00
21 lines
619 B
YAML
21 lines
619 B
YAML
name: Update documentation
|
|
|
|
on:
|
|
repository_dispatch:
|
|
types: [update-documentation]
|
|
|
|
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 repositories/${{ github.event.client_payload.repo }}
|
|
- name: Commit changes
|
|
uses: EndBug/add-and-commit@v9
|
|
with:
|
|
message: 'chore: update docs for ${{ github.event.client_payload.repo }} to ${{github.event.client_payload.ref}}'
|
|
default_author: ReVanced
|