File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ const unassignInactiveInHours = core.getInput('unassign_inactive_in_hours');
55const unassignInactiveMessage = core . getInput ( 'unassign_inactive_message' ) ;
66const warningInactiveInHours = core . getInput ( 'warning_inactive_in_hours' ) ;
77const warningInactiveMessage = core . getInput ( 'warning_inactive_message' ) ;
8+ const officeHours = core . getInput ( 'offce_hours' ) ;
89const repoOwner = github . context . repo . owner ;
910const repo = github . context . repo . repo ;
1011const octokit = github . getOctokit ( token ) ;
@@ -176,9 +177,9 @@ async function main() {
176177 `hours (${ ( timeInactiveInHours / 24 ) . toFixed ( 2 ) } days) ` +
177178 `and will be automatically unassigned after ${ willBeUnassignedInHours } ` +
178179 `more hours (${ ( willBeUnassignedInHours / 24 ) . toFixed ( 2 ) } days). ` +
179- `If you need help or have questions, please visit slack during ` +
180- `office hours (Tuesdays 6-8 PM PST) in the #casa channel . ` +
181- `Link to slack : https://rubyforgood.herokuapp.com/ \n\n` +
180+ `If you have questions, please visit the #casa channel in slack during ` +
181+ `${ officeHours } ` + ` . ` +
182+ `Link: https://rubyforgood.herokuapp.com/ \n\n` +
182183 `${ warningInactiveMessage } ` ;
183184 try {
184185 await octokit . issues . createComment ( {
You can’t perform that action at this time.
0 commit comments