Intermittent Wi-Fi connectivity loss after using WSL2 (Intel AX211) - adapter remains connected but cannot reach gateway #20228
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: Process new comment on issue | |
| on: | |
| workflow_dispatch : | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| wti: | |
| name: Run wti | |
| runs-on: windows-2022 | |
| permissions: | |
| issues: write | |
| if: ${{ !github.event.issue.pull_request && github.event.issue.user.id == github.event.comment.user.id }} | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - uses: ./.github/actions/triage | |
| with: | |
| issue: '${{ github.event.issue.number }}' | |
| comment: '${{ github.event.comment.id }}' | |
| token: ${{ secrets.GITHUB_TOKEN }} |