mirror of https://github.com/apache/kafka.git
MINOR Fix condition in flaky test report workflow (#18599)
Reviewers: Mickael Maison <mickael.maison@gmail.com>
This commit is contained in:
parent
e9e03faf87
commit
967a19732a
|
@ -23,7 +23,6 @@ on:
|
||||||
jobs:
|
jobs:
|
||||||
flaky-test-report:
|
flaky-test-report:
|
||||||
name: Flaky Test Report
|
name: Flaky Test Report
|
||||||
if : github.event.repository.fork == 'false'
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -37,6 +36,7 @@ jobs:
|
||||||
- name: Setup Python
|
- name: Setup Python
|
||||||
uses: ./.github/actions/setup-python
|
uses: ./.github/actions/setup-python
|
||||||
- name: Run Report
|
- name: Run Report
|
||||||
|
if : ${{ ! github.event.repository.fork }}
|
||||||
env:
|
env:
|
||||||
DEVELOCITY_ACCESS_TOKEN: ${{ secrets.DV_API_ACCESS }}
|
DEVELOCITY_ACCESS_TOKEN: ${{ secrets.DV_API_ACCESS }}
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue