This repository was archived by the owner on Mar 31, 2026. It is now read-only.
feat: support fine-grained permissions database roles in connect #296
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: 'multi-approvers' | |
| on: | |
| pull_request: | |
| types: | |
| - 'opened' | |
| - 'edited' | |
| - 'reopened' | |
| - 'synchronize' | |
| - 'ready_for_review' | |
| - 'review_requested' | |
| - 'review_request_removed' | |
| pull_request_review: | |
| types: | |
| - 'submitted' | |
| - 'dismissed' | |
| permissions: | |
| actions: 'write' | |
| contents: 'read' | |
| pull-requests: 'read' | |
| concurrency: | |
| group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}' | |
| cancel-in-progress: true | |
| jobs: | |
| multi-approvers: | |
| uses: 'abcxyz/pkg/.github/workflows/multi-approvers.yml@1d1cedf7768d17dde23bb2cda24bc1fb950e9f92' | |
| with: | |
| org-members-path: 'googleapis/google-auth-library-java/main/.github/workflows/members.json' |