azurerm_site_recovery_replicated_vm - support in-place disk add/remove without full resync
#217
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
| --- | |
| name: Link Milestone | |
| # When a PR merges to main, assigns it and all issues it closes to the next | |
| # unreleased milestone via scripts/automation/milestone-link.sh. | |
| permissions: {} | |
| on: | |
| pull_request_target: | |
| branches: [main] | |
| types: ['closed'] | |
| jobs: | |
| link-milestone: | |
| if: github.event.pull_request.merged == true | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| issues: write | |
| steps: | |
| # pull_request_target checks out the base branch (main), not the PR head | |
| - uses: actions/checkout@11d5960a326750d5838078e36cf38b85af677262 # v6 | |
| - name: "Link Milestone" | |
| shell: bash | |
| run: bash ./scripts/automation/milestone-link.sh | |
| env: | |
| PR_NUMBER: ${{ github.event.number }} | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |