feat(github-action): Implement cfn-guard as a Github Action in TS #7
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: CFN Guard Validate | |
on: [pull_request, push] | |
jobs: | |
guard: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
name: Guard Validate | |
steps: | |
- name: CFN Guard Validate | |
uses: dannyvassallo/[email protected] | |
with: | |
rules: './guard/resources/validate/rules-dir/' | |
data: './guard/resources/validate/data-dir/' | |
token: ${{ secrets.GITHUB_TOKEN }} |