8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation< 8000 /a>.
There was an error while loading. Please reload this page.
1 parent 6fdebd8 commit 902265bCopy full SHA for 902265b
.github/actions/upload-datadog/action.yaml
@@ -9,6 +9,10 @@ runs:
9
steps:
10
- shell: bash
11
run: |
12
+ if [[ ${{ github.event.pull_request.head.repo.full_name != 'coder/coder' }} ]]; then
13
+ echo "Not a pull request from the main repo, skipping..."
14
+ exit 0
15
+ fi
16
npm install -g @datadog/datadog-ci
17
datadog-ci junit upload --service coder ./gotests.xml \
18
--tags os:${{runner.os}} --tags runner_name:${{runner.name}}
0 commit comments