You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# issue_comment does not contain any references to github.base_ref
@@ -93,6 +95,8 @@ runs:
93
95
else
94
96
echo "CLUSTER=release-oblt" >> $GITHUB_ENV
95
97
fi
98
+
env:
99
+
ISSUE_URL: ${{ inputs.issue-url }}
96
100
shell: bash
97
101
98
102
- name: Create GitHub issue
@@ -118,16 +122,19 @@ runs:
118
122
119
123
### Further details
120
124
121
-
Caused by @${{ inputs.user }} in ${{ inputs.comment-url }} via this [GitHub workflow build](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }})
125
+
Caused by @${GITHUB_USER} in ${COMMENT_URL} via this [GitHub workflow build](${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }})
122
126
EOT
123
127
gh issue \
124
128
create \
125
129
--label 'deploy-custom-kibana' \
126
-
--title "[Deploy Kibana] for user ${{ inputs.user }} with PR kibana@pr-${{ env.PR }} on cluster ${{ env.CLUSTER }}" \
127
-
--assignee ${{ inputs.user }} \
130
+
--title "[Deploy Kibana] for user ${GITHUB_USER} with PR kibana@pr-${{ env.PR }} on cluster ${{ env.CLUSTER }}" \
131
+
--assignee "${GITHUB_USER}" \
128
132
--body-file .body-content \
129
133
--repo elastic/observability-test-environments | tee .issue
130
134
echo "issue=$(cat .issue)" >> "$GITHUB_OUTPUT"
135
+
env:
136
+
GITHUB_USER: ${{ inputs.user }}
137
+
COMMENT_URL: ${{ inputs.comment-url }}
131
138
shell: bash
132
139
133
140
- name: Notify with a reaction if a non-elastician comment
0 commit comments