From 24eeeab7730bc04da1135e118e6c86b2c567b29c Mon Sep 17 00:00:00 2001 From: Alexandra Bara Date: Fri, 16 Jan 2026 10:40:15 -0600 Subject: [PATCH] clearning cache --- .github/workflows/update-plugin-docs.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/update-plugin-docs.yml b/.github/workflows/update-plugin-docs.yml index 2778efb1..b5479130 100644 --- a/.github/workflows/update-plugin-docs.yml +++ b/.github/workflows/update-plugin-docs.yml @@ -40,9 +40,16 @@ jobs: --package nodescraper.plugins.inband \ --output docs/PLUGIN_DOC.md + - name: Clean pre-commit cache + run: | + rm -rf /tmp/github-actions-home/.cache/pre-commit + source venv/bin/activate + pre-commit clean || true + - name: Format documentation with pre-commit run: | source venv/bin/activate + pre-commit install-hooks || true pre-commit run --files docs/PLUGIN_DOC.md || true - name: Create Pull Request