fix: Fix the issue where the channel closes prematurely during the login process. #467
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
| on: | |
| push: | |
| pull_request: | |
| types: [opened, synchronize, closed] | |
| release: | |
| types: [created] | |
| name: JumpServer repos generic handler | |
| jobs: | |
| handle_pull_request: | |
| if: github.event_name == 'pull_request' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: jumpserver/action-generic-handler@master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.PRIVATE_TOKEN }} | |
| I18N_TOKEN: ${{ secrets.I18N_TOKEN }} | |
| handle_push: | |
| if: github.event_name == 'push' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: jumpserver/action-generic-handler@master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.PRIVATE_TOKEN }} | |
| I18N_TOKEN: ${{ secrets.I18N_TOKEN }} | |
| handle_release: | |
| if: github.event_name == 'release' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: jumpserver/action-generic-handler@master | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.PRIVATE_TOKEN }} | |
| I18N_TOKEN: ${{ secrets.I18N_TOKEN }} |