revanced-documentation/.github/workflows/update-documentation.yml

22 lines
649 B
YAML
Raw Normal View History

name: Update documentation
on:
2022-11-16 12:31:28 +01:00
repository_dispatch:
2022-11-12 18:50:11 +01:00
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 --init --recursive --remote repositories/${{ github.event.client_payload.repo }}
- name: Commit changes
uses: EndBug/add-and-commit@v9
with:
2022-11-12 18:50:11 +01:00
message: 'chore: update docs for ${{ github.event.client_payload.repo }} to ${{github.event.client_payload.ref}}'
2022-11-16 13:15:08 +01:00
fetch: false
2023-09-30 03:18:32 +02:00
default_author: ReVanced