Fix mypy type errors across service-related files in Selenium WebDriver #169
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: | |
| repo-token: ${{ secrets.SELENIUM_CI_TOKEN }} | |
| configuration-path: .github/pr-labeler-config.yml |