Skip to content

Commit 30deb1f

Browse files
authored
Improve response messages for access requests
1 parent 328d52f commit 30deb1f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/source-access.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ jobs:
133133
const current = state[username] || { status: 'none' };
134134
135135
if (command === 'Request Full Access') {
136-
if (current.status === 'pending') return core.info('Countdown already running; ignoring duplicate.');
136+
if (current.status === 'pending') return reply(`[${username}]::Countdown Already Running - Access scheduled for ${fmtDate(current.scheduledFor)}`);
137137
if (current.status === 'granted' || await hasCollaboratorAccess(username)) {
138138
return reply(`[${username}]::Access Already Granted`);
139139
}

0 commit comments

Comments
 (0)