/
githubmirror
/
gutenberg
Обзор
Документация
Войти
/
githubmirror
/
gutenberg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
.github/workflows/workflow-lint.yml
40 строк
1 KB
Adrian Moldovan
CI: cache the system packages Playwright dowloads for WebKit (#80846)
03 авг 2026, 13:01
Не верифицирован
03 авг 2026, 13:01
226fd44
Код
Авторство
О чём код?
name: Lint GitHub Actions workflow files on: push: branches: - trunk paths: # Only run when changes are made to workflow files. - '.github/workflows/**' - '.github/*/action.yml' - 'packages/**/action.yml' pull_request: branches: - trunk paths: # Only run when changes are made to workflow files. - '.github/workflows/**' - '.github/*/action.yml' - 'packages/**/action.yml' workflow_dispatch: # Cancels all previous workflow runs for pull requests that have not completed. concurrency: # The concurrency group contains the workflow name and the branch name for pull requests # or the commit hash for any other events. group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} cancel-in-progress: true # Disable permissions for all available scopes by default. # Any needed permissions should be configured at the job level. permissions: {} jobs: lint: name: Lint GitHub Action files permissions: security-events: write actions: read contents: read uses: ./.github/workflows/reusable-workflow-lint.yml