Fix protocol port fallback for cases with port in input #1141
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: 🤖 dep auto merge | |
| on: | |
| pull_request: | |
| branches: | |
| - dev | |
| workflow_dispatch: | |
| permissions: | |
| pull-requests: write | |
| issues: write | |
| repository-projects: write | |
| jobs: | |
| automerge: | |
| runs-on: ubuntu-latest | |
| if: github.actor == 'dependabot[bot]' | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| token: ${{ secrets.DEPENDABOT_PAT }} | |
| - uses: ahmadnassri/action-dependabot-auto-merge@v2 | |
| with: | |
| github-token: ${{ secrets.DEPENDABOT_PAT }} | |
| target: all |