Trestlebot initial #1
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: Trestle-bot rules-transform and autosync | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'profiles/**' | |
- 'catalogs/**' | |
- 'component-definitions/**' | |
- 'markdown/**' | |
- 'rules/**' | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
rules-transform-and-autosync: | |
name: Rules Transform and AutoSync | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: AutoSync | |
id: autosync | |
uses: RedHatProductSecurity/trestle-bot/actions/autosync@main | |
with: | |
markdown_path: "markdown/components" | |
oscal_model: "compdef" | |
file_pattern: "*.json,markdown/*" | |
- name: Check if rules changed | |
id: changes | |
uses: dorny/paths-filter@v3 | |
with: | |
filters: | | |
rules: | |
- 'rules/**' | |
- name: Rules Tranform | |
if: steps.changes.outputs.rules == 'true' | |
uses: RedHatProductSecurity/trestle-bot/actions/rules-transform@main | |
with: | |
markdown_path: "markdown" | |
commit_message: "Auto-transform rules [skip ci]" |