We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 887bbea commit a442420Copy full SHA for a442420
.github/actions/upload-datadog/action.yaml
@@ -9,9 +9,9 @@ runs:
9
steps:
10
- shell: bash
11
run: |
12
- repo_name=${{ github.repository_owner }}/${{ github.repository_name }}
13
- echo "repo_name: $repo_name"
14
- if [[ $repo_name != "coder/coder" ]]; then
+ owner=${{ github.repository_owner }}
+ echo "owner: $owner"
+ if [[ $owner != "coder" ]]; then
15
echo "Not a pull request from the main repo, skipping..."
16
exit 0
17
fi
0 commit comments