We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09590c1 commit 8bfbe3fCopy full SHA for 8bfbe3f
.github/workflows/generate-p3-docs.yaml
@@ -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