Looking at https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#defaults it seems like I should be able to define a default timeout-minutes
that will be applied to each job, however, when I have:
defaults:
timeout-minutes: 15
In the workflow, it reports that the key was unexpected:
Invalid workflow file
The workflow is not valid. .github/workflows/code.yml (Line: 14, Col: 3): Unexpected value 'timeout-minutes'
Should I be able to set that key there? If not, I think the documentation for defaults
could use a little more clarification as to what keys are allowed.