vscode-github-actions
vscode-github-actions copied to clipboard
Workflows using reusable workflows are reported as incorrect
The following workflow:
---
name: Lint Code Base
on:
push:
branches-ignore:
- main
pull_request:
branches:
- main
jobs:
lint:
uses: ./.github/workflows/reusable-superlinter.yml
Shows some errors:
- 'lint':
Missing required key 'runs-on'andMissing required key 'steps' - 'uses':
Key 'uses' is not allowed
These are both incorrect in this case: https://docs.github.com/en/actions/using-workflows/reusing-workflows
This hit me as well. Do you have an idea for a fix?
I hit the same error as well.
Still present in v0.24.4.
This should work now.