When does job with "manual approval" expires?

In a workflow, I have the following configuration
Question: Will the job stays in hold state even after 3 months? (if i decide to approve it at a later date?)

workflows:
version: 2
build-and-promote-workflow:
  jobs:
     - build
     - hold-for-approval:
         type: approval
         requires:
             - build
     - promote:
         requires:
             - hold-for-approval

Currently there is no expiration. The job will remain on-hold unless acted upon.

And workspace datas will remain available without expiration ?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.