chore: Add copyright and license to generate_models.sh #21
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: PR Governance | |
| on: | |
| pull_request_target: | |
| types: [ | |
| opened, | |
| synchronize, | |
| reopened, | |
| ready_for_review, | |
| review_requested, | |
| review_request_removed, | |
| assigned, | |
| unassigned | |
| ] | |
| pull_request_review: | |
| types: [submitted, dismissed] | |
| jobs: | |
| governance: | |
| name: Reviews | |
| # skip for draft PRs | |
| if: github.event.pull_request.draft == false | |
| permissions: | |
| statuses: write | |
| contents: read | |
| pull-requests: read | |
| # Use the reusable workflow defined in the central governance repository | |
| # zizmor: ignore[ref-confusion] | |
| uses: Universal-Commerce-Protocol/.github/.github/workflows/reusable-governance.yml@main | |
| with: | |
| repo-name: "python-sdk" | |
| secrets: | |
| # Required: An org-level Read token to read team memberships | |
| ORG_READ_TOKEN: ${{ secrets.ORG_READ_TOKEN }} |