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 4294759 commit 64211f6Copy full SHA for 64211f6
.github/workflows/update-plugin-docs.yml
@@ -30,10 +30,15 @@ jobs:
30
--package nodescraper.plugins.inband \
31
--output docs/PLUGIN_DOC.md
32
33
+ - name: Format documentation with pre-commit
34
+ run: |
35
+ source venv/bin/activate
36
+ pre-commit run --files docs/PLUGIN_DOC.md || true
37
+
38
- name: Commit and push changes
39
run: |
40
git config user.name "github-actions[bot]"
41
git config user.email "github-actions[bot]@users.noreply.github.com"
42
git add docs/PLUGIN_DOC.md
- git diff --staged --quiet || git commit -m "docs: Update plugin documentation [automated]"
43
+ git diff --staged --quiet || git commit --no-verify -m "docs: Update plugin documentation [automated]"
44
git push
0 commit comments