Skip to content

Implement provider-defined functions for data size #2

Implement provider-defined functions for data size

Implement provider-defined functions for data size #2

Workflow file for this run

name: Changelog
on:
pull_request:
branches:
- main
paths:
- .changes/unreleased/*.yaml
- .changie.yaml
- .github/workflows/changie.yml
- CHANGELOG.md
permissions:
contents: read
jobs:
check:
name: Ensure no diff
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Batch changes
continue-on-error: true
uses: miniscruff/changie-action@6dcc2533cac0495148ed4046c438487e4dceaa23 # v2.0.0
with:
version: latest
args: batch auto
- name: Ensure no diff
# language=bash
run: |
git diff --compact-summary --exit-code || \
(echo "*** Unexpected diff after code generation. Run 'make generate-docs' and commit."; exit 1)