-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (35 loc) · 1005 Bytes
/
phpdoc.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: phpDocumentor
on:
push:
branches: [ main ]
permissions:
contents: write
pull-requests: write
jobs:
phpdoc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run phpdoc
run: |
docker run --rm -v $(pwd):/data phpdoc/phpdoc:3
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v5
with:
branch: docs/main
base: main
commit-message: "docs: update"
delete-branch: true
title: "auto: docs build"
body: |
Generated documentation via phpdoc on merge
labels: "auto,auto-doc"
- name: Merge Pull Request
continue-on-error: true
uses: juliangruber/merge-pull-request-action@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
number: ${{ steps.cpr.outputs.pull-request-number }}
method: merge
repo: conduit-innovation/gorilla-claw