fix(profiling): crash in ddtrace_get_profiling_context #7857
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: Check snapshots | |
| on: | |
| - pull_request | |
| jobs: | |
| check-snapshots: | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| pull-requests: write # need to add a comment to a PR | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-dotnet@3951f0dfe7a07e2313ec93c75700083e2005cbab # v4.3.0 | |
| with: | |
| dotnet-version: '7.0.101' | |
| - name: "Check Snapshots" | |
| run: ./github-actions-helpers/build.sh SummaryOfSnapshotChanges | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| PullRequestNumber: "${{ github.event.pull_request.number }}" | |
| TargetBranch: "${{ github.base_ref }}" |