Add full_server_name support as template variable to sqlserver template config key #25627
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: PR | |
on: | |
pull_request: | |
paths-ignore: | |
- datadog_checks_base/datadog_checks/** | |
- datadog_checks_dev/datadog_checks/dev/*.py | |
merge_group: | |
# We require this workflow to pass in order to merge a PR to master. | |
# This means Github's Merge Queue also requires it to pass. | |
# We must add the Merge Queue trigger in this configuration, otherwise Merge Queue | |
# times out waiting for this check that never triggers. | |
types: [checks_requested] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.head_ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
uses: ./.github/workflows/pr-test.yml | |
with: | |
repo: core | |
secrets: inherit | |
permissions: | |
# needed for codecov in test-target.yml, allows the action to get a JWT signed by Github | |
id-token: write | |
# needed for compute-matrix in test-target.yml | |
contents: read |