We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f232a7f commit b1f2347Copy full SHA for b1f2347
.github/workflows/gh_pages.yml
@@ -25,14 +25,21 @@ jobs:
25
cd source
26
npm ci
27
jsdoc -c jsdoc.json -d ../out
28
- cd ../out
+ - name: Run prettier
29
+ run: |
30
+ cd out
31
sed -i -e 's:^[[:space:]]*<!--[[:space:]]*$::g' -e 's:^[[:space:]]*-->[[:space:]]*$::g' global.html
32
prettier . --write
33
+ - name: Create commit
34
+ if: always()
35
36
37
git add .
38
git config --local user.email ""
39
git config --local user.name "Github Actions"
40
git commit -a -m "Update api for ${{github.event.release.name}}" || true
41
- name: Create Pull Request
42
43
id: cpr
44
uses: peter-evans/create-pull-request@v2
45
with:
0 commit comments