Fixed actor name for detecting renovate bot PRs (#219140)

## Summary

Fixed actor name for detecting renovate bot PRs.
This commit is contained in:
Elena Shostak 2025-04-25 00:01:30 +02:00 committed by GitHub
parent f7b28d7b5f
commit 442cf9b7be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

1
.github/CODEOWNERS vendored
View file

@ -1969,6 +1969,7 @@ x-pack/platform/plugins/private/cloud_integrations/cloud_full_story/server/confi
/.github/codeql @elastic/kibana-security
/.github/workflows/codeql.yml @elastic/kibana-security
/.github/workflows/codeql-stats.yml @elastic/kibana-security
/.github/workflows/auto-approve-renovate-updates.yml @elastic/kibana-security
/src/dev/eslint/security_eslint_rule_tests.ts @elastic/kibana-security
/src/core/server/integration_tests/config/check_dynamic_config.test.ts @elastic/kibana-security
/src/platform/plugins/shared/telemetry/server/config/telemetry_labels.ts @elastic/kibana-security

View file

@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
if: |
startsWith(github.event.pull_request.head.ref, 'renovate') &&
github.actor == 'renovate[bot]'
github.actor == 'elastic-renovate-prod[bot]'
permissions:
pull-requests: write
steps: