Update rule-ac-2.yaml #2
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: Transform Rules On Push | |
# Only run on pushes to branches other than main. Pushes to main should be | |
# a result of a pull request merge. The transform rules operation is not idempotent | |
# and the OSCAL JSON will be modified each time it is run. | |
on: | |
push: | |
branches-ignore: | |
- main | |
paths: | |
- 'rules/**' | |
jobs: | |
call-transform: | |
uses: ./.github/workflows/transform-rules.yml | |
with: | |
branch: ${{ github.ref_name }} | |
secrets: inherit |