Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion .github/workflows/spec-drift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,18 @@ jobs:
- name: Check for drift
id: drift
run: |
if ! diff -u --label vendored --label upstream <(python3 -m json.tool --sort-keys openapi.json) <(python3 -m json.tool --sort-keys /tmp/latest-spec.json) > /tmp/spec.diff; then
# Strip the "Last updated: <date>" line from the description before diffing
# so that date-only changes do not trigger a false positive.
strip_date() { python3 -c "
import json, re, sys
spec = json.load(sys.stdin)
if 'info' in spec and 'description' in spec['info']:
spec['info']['description'] = re.sub(r'\*Last updated:[^\n]*\*\n?', '', spec['info']['description'])
print(json.dumps(spec, sort_keys=True, indent=4))
"; }
if ! diff -u --label vendored --label upstream \
<(strip_date < openapi.json) \
<(strip_date < /tmp/latest-spec.json) > /tmp/spec.diff; then
echo "drifted=true" >> "$GITHUB_OUTPUT"
fi
- name: Open or update issue
Expand Down
2 changes: 1 addition & 1 deletion openapi.json

Large diffs are not rendered by default.