How to guarantee the job running even the required job fail?

I have four jobs:

jobs:
  create-sandbox
  build-apk
  send-to-test-lab-for-ui-test
  delete-sandbox

workflows:
  run-tests:
    jobs:
      - create-sandbox
      - build-apk:
           requires:
              - create-sandbox
      - send-to-test-lab-for-ui-test:
           requires:
              - build-apk
      - delete-sandbox:
           requires:
               - send-to-test-lab-for-ui-test

Is it possible to guarantee delete-sandbox executing if any of build-apk or send-to-test-lab-for-ui-test fail. If yes, how?

Hi @guorui6 ,

Would this workaround help in your case?