/
githubmirror
/
grafana
Обзор
Документация
Войти
/
githubmirror
/
grafana
Код
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/shellcheck.yml
31 строка
813 B
Matheus Macabu
CI: Use self-hosted runners everywhere (#125438)
26 май 2026, 19:50
Не верифицирован
26 май 2026, 19:50
d266b04
Код
Авторство
О чём код?
name: Shellcheck on: push: branches: - main - release-* pull_request: concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true permissions: {} jobs: shellcheck: # Run on `grafana/grafana` main branch, or on pull requests to prevent double-running on mirrors if: (github.event_name == 'pull_request' || (github.event_name == 'push' && github.repository == 'grafana/grafana')) name: Shellcheck scripts runs-on: ubuntu-arm64-small permissions: contents: read # clone the repository steps: - name: Clone repository uses: actions/checkout@v5 with: persist-credentials: false - name: Run Shellcheck run: find scripts/ -name '*.sh' -type f -exec shellcheck -e SC1071 -e SC2162 '{}' +