chore: remove dotnet6 from docs and add migration guides for v2 and v3 #1655
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: Record PR details | |
| on: | |
| pull_request: | |
| types: [opened, edited, closed] | |
| permissions: | |
| contents: read | |
| jobs: | |
| record_pr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - name: "Extract PR details" | |
| uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0 | |
| with: | |
| script: | | |
| const script = require('.github/scripts/save_pr_details.js') | |
| await script({github, context, core}) | |
| - uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| with: | |
| name: pr | |
| path: pr.txt |