Regenerate from usnistgov/OSCAL #775
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: Regenerate from usnistgov/OSCAL | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
push: | |
branches: [ master ] | |
jobs: | |
report: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.20 | |
- name: Install dependencies | |
uses: mstksg/get-package@master | |
with: | |
apt-get: libxml2-utils | |
- uses: actions/checkout@v4 | |
- name: Regenerate models | |
run: | | |
export PATH=~/go/bin:$PATH | |
make generate | |
- name: Clean-up | |
run: | | |
make clean | |
git checkout -- go.mod | |
git checkout -- go.sum | |
- name: Create Pull Request | |
uses: peter-evans/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
COMMIT_MESSAGE: 'Rebuilding oscalkit models to match latest development at upstream OSCAL' | |
COMMIT_AUTHOR_EMAIL: [email protected] | |
COMMIT_AUTHOR_NAME: Github Actions Automations | |
PULL_REQUEST_TITLE: 'Rebuilding oscalkit models to match latest development at upstream OSCAL' | |
PULL_REQUEST_BODY: | | |
Automated rebuild of oscalkit models to match latest changes at https://github.com/usnistgov/OSCAL | |
PULL_REQUEST_BRANCH: make-generate | |
BRANCH_SUFFIX: short-commit-hash | |
- name: Check output environment variable | |
run: echo "Pull Request Number - $PULL_REQUEST_NUMBER" |