8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d082ab5 commit 97fb502Copy full SHA for 97fb502
.github/actions/upload-datadog/action.yaml
@@ -9,7 +9,9 @@ runs:
9
steps:
10
- shell: bash
11
run: |
12
- if [[ ${{ github.event.pull_request.head.repo.full_name != 'coder/coder' }} ]]; then
+ repo_name=${{ github.event.pull_request.head.repo.full_name }}
13
+ echo "repo_name: $repo_name"
14
+ if [[ $repo_name != "coder/coder" ]]; then
15
echo "Not a pull request from the main repo, skipping..."
16
exit 0
17
fi
0 commit comments