Skip to content

Commit b272cf7

Browse files
committed
🧪 Fix pre-commit caching hook logging
The previous implementation mistakenly made use of backticks which are interpreted in bash. Not anymore.
1 parent 6531372 commit b272cf7

File tree

1 file changed

+1
-1
lines changed
  • .github/stdlib-workflows/reusable-tox/actions/post-src-checkout

1 file changed

+1
-1
lines changed

‎.github/stdlib-workflows/reusable-tox/actions/post-src-checkout/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ runs:
1212
if: fromJSON(inputs.calling-job-context).toxenv == 'pre-commit'
1313
run: >-
1414
>&2 echo Caching ~/.cache/pre-commit based on
15-
the contents of `.pre-commit-config.yaml`...
15+
the contents of '.pre-commit-config.yaml'...
1616
shell: bash
1717
- name: Cache pre-commit.com virtualenvs
1818
if: fromJSON(inputs.calling-job-context).toxenv == 'pre-commit'

0 commit comments

Comments
 (0)