Attempt fix for issue #2357 "Failed to detach context" exception for grpc instrumentation #12700
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
| # This action assigns and requires approval from owners of components for | |
| # PRs that are open against those components. Components are defined as | |
| # individual paths within this repository. | |
| name: 'Component Owners' | |
| on: | |
| pull_request_target: | |
| permissions: | |
| contents: read | |
| jobs: | |
| run_self: | |
| runs-on: ubuntu-latest | |
| name: Auto Assign Owners | |
| permissions: | |
| contents: read # to read changed files | |
| issues: write # to read/write issue assignees | |
| pull-requests: write # to read/write PR reviewers | |
| # Don't fail tests if this workflow fails. Some pending issues: | |
| # - https://github.com/dyladan/component-owners/issues/8 | |
| continue-on-error: true | |
| steps: | |
| - uses: dyladan/component-owners@main |