How to detect if client closed the stream for server streaming method? #32
This file contains 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: Add issues and PRs to project | |
on: | |
issues: | |
types: | |
- opened | |
- reopened | |
- transferred | |
pull_request_target: | |
types: | |
- opened | |
- reopened | |
jobs: | |
add-to-project: | |
name: Add issue to project | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get GitHub app token | |
uses: actions/create-github-app-token@v1 | |
id: app_token | |
with: | |
app-id: ${{ secrets.CONNECT_EXPORT_APP_ID }} | |
private-key: ${{ secrets.CONNECT_EXPORT_APP_KEY }} | |
- uses: actions/[email protected] | |
with: | |
project-url: https://github.com/orgs/connectrpc/projects/1 | |
github-token: ${{ steps.app_token.outputs.token }} |