/
githubmirror
/
salt
Обзор
Документация
Войти
/
githubmirror
/
salt
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/actions/setup-pre-commit/action.yml
28 строк
511 B
Daniel A. Wozniak
Add changelog and cleanup commented out code
09 окт 2025, 00:54
09 окт 2025, 00:54
bf4ce37
Код
Авторство
О чём код?
--- name: setup-pre-commit description: Setup 'pre-commit' inputs: version: description: Pre-commit version to install required: true default: 3.0.3 cache-seed: required: true description: Seed used to invalidate caches runs: using: composite steps: - name: Install Pre-Commit shell: bash run: | pip install pre-commit==${{ inputs.version }} - name: Install Pre-Commit Hooks shell: bash run: | pre-commit install --install-hooks