Tools: Moved tools to .tools from .doc_gen and added Python tools rules. #10148
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
# v1.1.0 | |
name: Extract Snippets Dry Run | |
on: | |
pull_request: | |
# run on demand | |
workflow_dispatch: | |
jobs: | |
extract-snippets-dryrun: | |
if: github.repository_owner == 'aws' || github.repository_owner == 'awsdocs' || github.repository_owner == 'aws-samples' || github.repository_owner == 'jerry-aws' | |
runs-on: ubuntu-latest | |
env: | |
REPORTS: issues | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- uses: actions/setup-python@v3 | |
with: | |
python-version: "3.9.x" | |
- run: bash .github/extract-snippets/extract-snippets.sh dryrun |