Issue#820 - add new CDK example demonstrating AWS CodePipeline based CICD setup #1481
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 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.9.x" | |
- run: bash .github/extract-snippets/extract-snippets.sh dryrun |