2021-10-11 22:13:17 +02:00
|
|
|
name: sync
|
2021-10-09 17:59:21 +02:00
|
|
|
|
2021-10-22 23:35:16 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master ]
|
2021-10-09 17:59:21 +02:00
|
|
|
|
2024-04-17 23:16:09 +02:00
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
|
2021-10-09 17:59:21 +02:00
|
|
|
jobs:
|
|
|
|
docs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-03-23 23:05:43 +01:00
|
|
|
- uses: actions/checkout@v4
|
2021-10-09 17:59:21 +02:00
|
|
|
|
|
|
|
- name: Install dependencies
|
|
|
|
run: composer install --prefer-dist --no-progress
|
|
|
|
|
|
|
|
- name: Run docgen
|
|
|
|
run: php bin/docgen
|
|
|
|
|
|
|
|
- name: Add & Commit
|
2023-01-12 23:05:07 +01:00
|
|
|
uses: EndBug/add-and-commit@v9
|
2021-10-09 17:59:21 +02:00
|
|
|
with:
|
|
|
|
add: 'docs'
|
2021-10-09 18:04:35 +02:00
|
|
|
message: '[automatic] Update docs with bin/docgen'
|
2023-04-04 11:29:52 +02:00
|
|
|
|