feat: Implement WebSocket-based real-time communication for orchestrator hosts with intelligent fallback #231
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: Assign Milestone | |
| on: | |
| issues: | |
| types: [opened, reopened] | |
| pull_request: | |
| types: [opened, reopened] | |
| jobs: | |
| assign-milestone: | |
| if: ${{ github.event.pull_request.draft == false && !startsWith(github.event.pull_request, 'BUMP')&& !startsWith(github.event.pull_request, 'Bump') && !startsWith(github.head_ref, 'release/') && github.event_name == 'pull_request'}} | |
| name: Assign Milestone | |
| env: | |
| repo: ${{ github.head_ref }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: git checkout | |
| uses: actions/checkout@v4 | |
| - name: Assign Milestone | |
| env: | |
| GH_TOKEN: ${{ secrets.PARALLELS_WORKFLOW_PAT }} | |
| run: | | |
| gh extension install valeriobelli/gh-milestone | |
| NEXT_MILESTONE=$(gh milestone list --json title --jq ".[-1].title") | |
| if [ -n "$NEXT_MILESTONE" ]; then | |
| gh pr edit ${{ env.repo }} --milestone "$NEXT_MILESTONE" | |
| fi |