Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Schofield authored Oct 27, 2021
1 parent bde5358 commit f113271
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
schedule:
- cron: "00,30 * * * *"
jobs:
test:
run-my-policy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -34,7 +34,7 @@ on:
schedule:
- cron: "00,30 * * * *"
jobs:
test:
run-my-policy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -44,3 +44,20 @@ jobs:
include-gcp: true
- run: custodian run -s out path/to/my-policy.yml
```

## Installing a specific version

```
name: My workflow
on:
workflow_dispatch:
jobs:
print-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: gscho/setup-cloud-custodian@v1
with:
custodian-version: '0.9.7.0'
- run: custodian version
```

0 comments on commit f113271

Please sign in to comment.