Skip to content

Commit 8bfbe3f

Browse files
committed
generating P3 docs with GitHub action
1 parent 09590c1 commit 8bfbe3f

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Generate P3 documentation
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
generate-p3-docs:
10+
runs-on: ubuntu-latest
11+
12+
permissions:
13+
contents: write
14+
15+
steps:
16+
- name: Checkout repository
17+
uses: actions/checkout@v2
18+
19+
- name: Run P3 Parser
20+
run: dotnet run --project path/to/your/console/app.csproj
21+
22+
- name: Add, Commit & Push changes
23+
uses: stefanzweifel/git-auto-commit-action@v5
24+
with:
25+
commit_message: "P3 docs updated"

0 commit comments

Comments
 (0)