This is an automated email from the ASF dual-hosted git repository. blaginin pushed a commit to branch db/on-error in repository https://gitbox.apache.org/repos/asf/datafusion-sandbox.git
commit b868d8e2b6c102fb8cbefd0a01a2d3c8084b7f69 Author: blaginin <[email protected]> AuthorDate: Sat Nov 8 15:56:41 2025 +0000 Do not abort on error --- .github/workflows/rust.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 128edab89..4300ef589 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -40,11 +40,12 @@ jobs: check-files: runs-on: ubuntu-latest outputs: - should_skip: ${{ steps.changed-files.outputs.all == '' }} + should_skip: ${{ steps.changed-files.outcome == 'success' && steps.changed-files.outputs.all == '' }} steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 - uses: Ana06/get-changed-files@25f79e676e7ea1868813e21465014798211fad8c id: changed-files + continue-on-error: true with: filter: | * --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
