Add shebang line to top of pre-commit hook so it can be used on Windows #11766
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate Documentation Metadata | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
# Allows running this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
validate-doc-metadata: | |
name: Validate Doc Metadata | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout repo content | |
uses: actions/checkout@v3 | |
with: | |
path: aws-doc-sdk-examples | |
- name: validate metadata | |
uses: awsdocs/aws-doc-sdk-examples-tools@main | |
with: | |
root: "${{ github.workspace }}/aws-doc-sdk-examples" |