@@ -66,11 +66,11 @@ jobs:
66
66
CALENDAR_ID : ${{ secrets.CALENDAR_ID }}
67
67
CALENDAR_SERVICE_ACCOUNT : ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
68
68
MAILCHIMP_API_KEY : ${{ secrets.MAILCHIMP_API_KEY }}
69
- TITLE : ${{github.event.issue.title}}
69
+ TITLE : ${{ github.event.issue.title }}
70
70
with :
71
71
script : |
72
72
const sendEmail = require('./.github/workflows/scripts/mailchimp/index.js');
73
- sendEmail('${{github.event.issue.html_url}}', '$ TITLE' );
73
+ sendEmail('${{github.event.issue.html_url}}', process.env. TITLE);
74
74
75
75
pull_request :
76
76
if : github.event_name == 'pull_request_target' && contains(github.event.pull_request.body, '@asyncapi/tsc_members')
@@ -112,11 +112,11 @@ jobs:
112
112
CALENDAR_ID : ${{ secrets.CALENDAR_ID }}
113
113
CALENDAR_SERVICE_ACCOUNT : ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
114
114
MAILCHIMP_API_KEY : ${{ secrets.MAILCHIMP_API_KEY }}
115
- TITLE : ${{github.event.pull_request.title}}
115
+ TITLE : ${{ github.event.pull_request.title }}
116
116
with :
117
117
script : |
118
118
const sendEmail = require('./.github/workflows/scripts/mailchimp/index.js');
119
- sendEmail('${{github.event.pull_request.html_url}}', '$ TITLE' );
119
+ sendEmail('${{github.event.pull_request.html_url}}', process.env. TITLE);
120
120
121
121
discussion :
122
122
if : github.event_name == 'discussion' && contains(github.event.discussion.body, '@asyncapi/tsc_members')
@@ -158,11 +158,11 @@ jobs:
158
158
CALENDAR_ID : ${{ secrets.CALENDAR_ID }}
159
159
CALENDAR_SERVICE_ACCOUNT : ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
160
160
MAILCHIMP_API_KEY : ${{ secrets.MAILCHIMP_API_KEY }}
161
- TITLE : ${{github.event.discussion.title}}
161
+ TITLE : ${{ github.event.discussion.title }}
162
162
with :
163
163
script : |
164
164
const sendEmail = require('./.github/workflows/scripts/mailchimp/index.js');
165
- sendEmail('${{github.event.discussion.html_url}}', '$ TITLE' );
165
+ sendEmail('${{github.event.discussion.html_url}}', process.env. TITLE);
166
166
167
167
issue_comment :
168
168
if : ${{ github.event_name == 'issue_comment' && !github.event.issue.pull_request && contains(github.event.comment.body, '@asyncapi/tsc_members') }}
@@ -204,11 +204,11 @@ jobs:
204
204
CALENDAR_ID : ${{ secrets.CALENDAR_ID }}
205
205
CALENDAR_SERVICE_ACCOUNT : ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
206
206
MAILCHIMP_API_KEY : ${{ secrets.MAILCHIMP_API_KEY }}
207
- TITLE : ${{github.event.issue.title}}
207
+ TITLE : ${{ github.event.issue.title }}
208
208
with :
209
209
script : |
210
210
const sendEmail = require('./.github/workflows/scripts/mailchimp/index.js');
211
- sendEmail('${{github.event.comment.html_url}}', '$ TITLE' );
211
+ sendEmail('${{github.event.comment.html_url}}', process.env. TITLE);
212
212
213
213
pr_comment :
214
214
if : github.event_name == 'issue_comment' && github.event.issue.pull_request && contains(github.event.comment.body, '@asyncapi/tsc_members')
@@ -250,11 +250,11 @@ jobs:
250
250
CALENDAR_ID : ${{ secrets.CALENDAR_ID }}
251
251
CALENDAR_SERVICE_ACCOUNT : ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
252
252
MAILCHIMP_API_KEY : ${{ secrets.MAILCHIMP_API_KEY }}
253
- TITLE : ${{github.event.issue.title}}
253
+ TITLE : ${{ github.event.issue.title }}
254
254
with :
255
255
script : |
256
256
const sendEmail = require('./.github/workflows/scripts/mailchimp/index.js');
257
- sendEmail('${{github.event.comment.html_url}}', '$ TITLE' );
257
+ sendEmail('${{github.event.comment.html_url}}', process.env. TITLE);
258
258
259
259
discussion_comment :
260
260
if : github.event_name == 'discussion_comment' && contains(github.event.comment.body, '@asyncapi/tsc_members')
@@ -296,8 +296,8 @@ jobs:
296
296
CALENDAR_ID : ${{ secrets.CALENDAR_ID }}
297
297
CALENDAR_SERVICE_ACCOUNT : ${{ secrets.CALENDAR_SERVICE_ACCOUNT }}
298
298
MAILCHIMP_API_KEY : ${{ secrets.MAILCHIMP_API_KEY }}
299
- TITLE : ${{github.event.discussion.title}}
299
+ TITLE : ${{ github.event.discussion.title }}
300
300
with :
301
301
script : |
302
302
const sendEmail = require('./.github/workflows/scripts/mailchimp/index.js');
303
- sendEmail('${{github.event.comment.html_url}}', '$ TITLE' );
303
+ sendEmail('${{github.event.comment.html_url}}', process.env. TITLE);
0 commit comments