We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce22c28 commit c351756Copy full SHA for c351756
.github/workflows/data-refresh.yaml
@@ -59,6 +59,10 @@ jobs:
59
update-snapshots:
60
runs-on: ubuntu-latest
61
needs: test-data
62
+ # TODO: this is a workaround to allow the job to continue even if the tests fail so
63
+ # we can post the outcome of the job in case of failure but it will show the job as successful
64
+ # even if the tests fail. We should figure out how to do this without continuing on error.
65
+ continue-on-error: true
66
if: ${{ needs.test-data.outputs.tests-passed == 'false' }}
67
outputs:
68
tests-passed: ${{ (steps.retest.outcome == 'success' && 'true') || 'false' }}
0 commit comments