/
githubmirror
/
nbs
Обзор
Документация
Войти
/
githubmirror
/
nbs
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/actions/shellcheck/action.yaml
30 строк
954 B
Nikita Menkovich
chore: updated action versions to fresh ones, removed unmaintained ones in favor of new in-repo actions (#6062)
01 июн 2026, 16:00
Не верифицирован
01 июн 2026, 16:00
e00c711
Код
Авторство
О чём код?
name: Shellcheck report description: Run shellcheck for shell scripts and generated workflow/action scripts outputs: exit_code: description: "shellcheck exit code" value: ${{ steps.shellcheck.outputs.exit_code }} has_report: description: "Whether shellcheck report files were generated" value: ${{ steps.shellcheck.outputs.has_report }} log_path: description: "Captured shellcheck log path" value: ${{ steps.shellcheck.outputs.log_path }} runs: using: composite steps: - name: shellcheck id: shellcheck uses: ./.github/actions/lint_report with: title: "Shell Scripts shellcheck" tool: shellcheck report_name: ga-scripts-shellcheck show_summary_table: "false" command: | bash .github/scripts/list_shell_files.sh | xargs -0 --no-run-if-empty shellcheck -f gcc ${SHELLCHECK_OPTS:-} env: SHELLCHECK_OPTS: "-e SC2155,SC2086"