We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5012b29 commit 2fb5626Copy full SHA for 2fb5626
.github/workflows/issue-creation.yml
@@ -3,6 +3,9 @@ on:
3
issues:
4
types: [ opened, reopened ]
5
6
+env:
7
+ ISSUE_TITLE: "${{ github.event.issue.title }}"
8
+
9
jobs:
10
build:
11
runs-on: ubuntu-latest
@@ -11,7 +14,7 @@ jobs:
14
- name: Git Issue Details
12
15
run: |
13
16
echo "Issue creator: ${{ github.event.issue.user.login }}"
- echo "Issue title: ${{ github.event.issue.title }}"
17
+ echo "Issue title: $ISSUE_TITLE"
18
echo "Issue number: ${{ github.event.issue.number }}"
19
echo "Issue url: ${{ github.event.issue.html_url }}"
20
- name: Google Chat Notification
@@ -37,7 +40,7 @@ jobs:
37
40
{
38
41
"keyValue": {
39
42
"topLabel": "Title",
- "content": "${{ github.event.issue.title }}"
43
+ "content": "'"$ISSUE_TITLE"'"
44
}
45
},
46
0 commit comments