mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 11:05:39 -04:00
[Dependency Review] Skipping health check for draft PRs (#225008)
## Summary Skipping health check and required review for draft PRs.
This commit is contained in:
parent
21200b848e
commit
0988f1bcb9
2 changed files with 51 additions and 47 deletions
|
@ -2,7 +2,7 @@ name: Enforce Dependency Review
|
||||||
|
|
||||||
on:
|
on:
|
||||||
pull_request_target:
|
pull_request_target:
|
||||||
types: [opened, reopened, synchronize]
|
types: [opened, reopened, synchronize, ready_for_review]
|
||||||
paths:
|
paths:
|
||||||
- 'package.json'
|
- 'package.json'
|
||||||
branches:
|
branches:
|
||||||
|
@ -14,7 +14,8 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: |
|
if: |
|
||||||
github.repository == 'elastic/kibana' &&
|
github.repository == 'elastic/kibana' &&
|
||||||
github.actor != 'elastic-renovate-prod[bot]'
|
github.actor != 'elastic-renovate-prod[bot]' &&
|
||||||
|
github.event.pull_request.draft == false
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout kibana-operations
|
- name: Checkout kibana-operations
|
||||||
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
|
||||||
|
|
|
@ -3,6 +3,8 @@ on:
|
||||||
pull_request_target:
|
pull_request_target:
|
||||||
types:
|
types:
|
||||||
- opened
|
- opened
|
||||||
|
- synchronize
|
||||||
|
- ready_for_review
|
||||||
branches:
|
branches:
|
||||||
- 'main'
|
- 'main'
|
||||||
paths:
|
paths:
|
||||||
|
@ -14,7 +16,8 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: |
|
if: |
|
||||||
github.repository == 'elastic/kibana' &&
|
github.repository == 'elastic/kibana' &&
|
||||||
github.actor != 'elastic-renovate-prod[bot]'
|
github.actor != 'elastic-renovate-prod[bot]' &&
|
||||||
|
github.event.pull_request.draft == false
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout kibana-operations
|
- name: Checkout kibana-operations
|
||||||
uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f
|
uses: actions/checkout@09d2acae674a48949e3602304ab46fd20ae0c42f
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue