Add DD_AGENT_FEATURE_POLLING_ENABLED setting
#5065
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: Auto add PR to vNext milestone | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - main | |
| - release/** | |
| types: [closed] | |
| jobs: | |
| add_to_milestone: | |
| if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.title, '[Version Bump]') == false | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write # need to modify existing PR | |
| issues: write # need to potentially create a new milestone | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| - uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # v5.0.0 | |
| with: | |
| global-json-file: global.json | |
| - name: "Assign to vNext Milestone" | |
| run: ./tracer/build.sh AssignPullRequestToMilestone | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
| PullRequestNumber: "${{ github.event.pull_request.number }}" |