Skip to content

Commit

Permalink
MINOR Fix conditional in Update Test Catalog workflow (apache#18289)
Browse files Browse the repository at this point in the history
Reviewers: Chia-Ping Tsai <[email protected]>
  • Loading branch information
mumrah authored Dec 24, 2024
1 parent 5a4590c commit 649cd6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 649cd6b

Please sign in to comment.