This repository was archived by the owner on Mar 31, 2026. It is now read-only.
feat: Add support for multiplexed sessions - part 1 (supporting classes and refactoring) #173
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@main' | |
| with: | |
| org-members-path: 'googleapis/google-auth-library-java/main/.github/workflows/members.json' |