refactor(sshtunnel): migrate to PipeBridge, eliminate 10s cleanup timer #365
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: Automatic Approve Workflow | |
| on: | |
| workflow_dispatch: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| automatic-approve: | |
| name: Approve Workflows | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/create-github-app-token@v3 | |
| id: app-token | |
| with: | |
| app-id: ${{ secrets.DEVSY_GITHUB_APP_ID }} | |
| private-key: ${{ secrets.DEVSY_GITHUB_APP_PRIVATE_KEY }} | |
| - uses: skevetter/automatic-approve-action@v2 | |
| with: | |
| token: ${{ steps.app-token.outputs.token }} | |
| workflows: "commit.yml,lint.yml,pr-ci.yml,pre-commit.yml" |