/
githubmirror
/
gutenberg
Обзор
Документация
Войти
/
githubmirror
/
gutenberg
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
trunk
.github/workflows/pull-request-automation.yml
34 строки
1 KB
dependabot[bot]
Bump the github-actions group across 1 directory with 5 updates (#80684)
29 июл 2026, 19:17
Не верифицирован
29 июл 2026, 19:17
39bc41b
Код
Авторство
О чём код?
on: pull_request_target: types: [opened] push: name: Pull request automation # Disable permissions for all available scopes by default. # Any needed permissions should be configured at the job level. permissions: {} jobs: pull-request-automation: runs-on: 'ubuntu-24.04' permissions: contents: read issues: write pull-requests: write if: ${{ github.repository == 'WordPress/gutenberg' }} steps: # Checkout defaults to using the branch which triggered the event, which # isn't necessarily `trunk` (e.g. in the case of a merge). - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: ref: trunk show-progress: ${{ runner.debug == '1' && 'true' || 'false' }} persist-credentials: false - name: Setup Node.js and install dependencies uses: ./.github/setup-node - uses: ./packages/project-management-automation with: github_token: ${{ secrets.GITHUB_TOKEN }}