Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 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
37 changes: 37 additions & 0 deletions .github/workflows/authorization-record-export.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Authorization Record Export

on:
pull_request:
paths:
- "conformance/authorization-record-*.json"
- "docs/interop/PROOFPATH_AUTHORIZATION_RECORD_EXPORT_V0_1.md"
- "schemas/proofpath-authorization-record-v0.1.schema.json"
- "scripts/check_authorization_record_export.py"
- "scripts/verify_authorization_record_export.py"
- ".github/workflows/authorization-record-export.yml"
push:
branches:
- main
paths:
- "conformance/authorization-record-*.json"
- "docs/interop/PROOFPATH_AUTHORIZATION_RECORD_EXPORT_V0_1.md"
- "schemas/proofpath-authorization-record-v0.1.schema.json"
- "scripts/check_authorization_record_export.py"
- "scripts/verify_authorization_record_export.py"
- ".github/workflows/authorization-record-export.yml"

permissions:
contents: read

jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Comment thread
coderabbitai[bot] marked this conversation as resolved.
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Reproduce canonical authorization exports
run: python3 scripts/check_authorization_record_export.py
- name: Independently verify lifecycle and handoff semantics
run: python3 scripts/verify_authorization_record_export.py
Loading
Loading