We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b26dd4b commit b62e227Copy full SHA for b62e227
.github/actions/upload-datadog/action.yaml
@@ -15,6 +15,11 @@ runs:
15
echo "Not a pull request from the main repo, skipping..."
16
exit 0
17
fi
18
+ if [[ -z "${{ inputs.api-key }}" ]]; then
19
+ # This can happen for dependabot.
20
+ echo "No API key provided, skipping..."
21
+ exit 0
22
+ fi
23
npm install -g @datadog/datadog-ci
24
datadog-ci junit upload --service coder ./gotests.xml \
25
--tags os:${{runner.os}} --tags runner_name:${{runner.name}}
0 commit comments