Skip to content

chore: Configure Renovate #82

chore: Configure Renovate

chore: Configure Renovate #82

# Generated by cue/workflows_tool.cue; do not edit
name: CUE and YAML reconciliation check
"on":
push:
branches:
- main
pull_request: {}
workflow_dispatch: null
jobs:
cue_reconciliation:
name: Verify CUE matches YAML configuration
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- name: Setup CUE environment
uses: cue-lang/setup-cue@143c2fe537047bf8c7ead6a30784ad1802e9d991
with:
version: v0.4.3
- name: Regenerate YAML from CUE
run: |-
rm ../.github/workflows/*.yml
rm ../.github/dependabot.yml
rm ../.goreleaser.yaml
rm ../.tool-versions
rm ../docs/config.yml
cue cmd gen
working-directory: cue
- name: Check commit is clean
run: test -z "$(git status --porcelain)" || (git status; git diff; false)