mirror of https://github.com/apache/kafka.git
MINOR Fix conditional in Update Test Catalog workflow (#18289)
Reviewers: Chia-Ping Tsai <chia7712@gmail.com>
This commit is contained in:
parent
5a4590c020
commit
649cd6b42c
|
@ -248,7 +248,7 @@ jobs:
|
|||
update-test-catalog:
|
||||
name: Update Test Catalog
|
||||
needs: test
|
||||
if: ${{ always() && inputs.is-trunk && !needs.test.outputs.timed-out }}
|
||||
if: ${{ always() && inputs.is-trunk && needs.test.outputs.timed-out == 'false' }}
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write
|
||||
|
|
Loading…
Reference in New Issue