[JS] Add websocket port option in Firefox ServiceBuilder when '--connect-existing' is not passed #6
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
| # Configuration for Label Generation - ./.github/pr-labeler-config.yml | |
| name: Label pull requests based on file paths | |
| on: | |
| pull_request_target: | |
| types: [opened] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout base repo to get config file | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: ${{ github.event.pull_request.base.ref }} | |
| repository: seleniumhq/selenium | |
| - name: Auto label Pull Requests | |
| uses: actions/labeler@v5 | |
| with: | |
| # The individual PAT is needed so labeler auto-executes this workflow | |
| # It expires 4/1/2026 | |
| repo-token: ${{ secrets.PR_LABELER_PAT }} | |
| configuration-path: .github/pr-labeler-config.yml |