Skip to content

Configure Renovate #269

Configure Renovate

Configure Renovate #269

Workflow file for this run

name: Check POLICIES.md is up-to-date
on: [push, pull_request]
jobs:
konstraint_doc:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Generate konstraint docs
uses: redhat-cop/github-actions/confbatstest@v4
with:
raw: konstraint doc -o POLICIES.md
- name: Check if there are changes to POLICIES.md
id: changes
uses: UnicornGlobal/[email protected]
with:
pathspec: POLICIES.md
- name: Fail if POLICIES.md changes found
if: steps.changes.outputs.changed == 1
run: |
echo "Uncommited changes to POLICIES.md exist. Failing."
exit 1
- name: Link checker
uses: gaurav-nelson/[email protected]