troubleshooting: mention specific HCS_E_HYPERV_NOT_INSTALLED error co… #2839
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: merge | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| # open or update publishing PR when there is a push to main | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| main-to-published: | |
| runs-on: ubuntu-24.04 | |
| if: github.repository_owner == 'docker' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| ref: published | |
| - name: Reset published branch | |
| run: | | |
| git fetch origin main:main | |
| git reset --hard main | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e | |
| with: | |
| delete-branch: false | |
| branch: published-update | |
| commit-message: publish updates from main | |
| labels: area/release | |
| title: publish updates from main | |
| body: | | |
| Automated pull request for publishing docs updates. |