Thanks for posting that! It looks like you’ve removed the timeout-minutes
section from your most recent version of this file, but looking back in your history it seems like there were some syntax issues with your YAML file.
YAML is whitespace sensitive language meaning the indentation of your code needs to be correct or your file won’t be read correctly. It also looks like you were attempting to add it with the steps.
prefix, which would also not be valid.
If you’d like to add it back you should be able to do so either at the job level or the step level in the following ways:
jobs:
continuous-delivery:
runs-on: ubuntu-latest
timeout-minutes: 1200
steps:
- name: Checkout
timeout-minutes: 1200
uses: actions/checkout@v2
I’d also recommend making sure your YAML is valid by either using the online actions editor, a YAML validator in your local dev environment, or pasting your workflow file into a site like https://yamlvalidator.com/