forked from jfmartinz/ResourceHub
-
Notifications
You must be signed in to change notification settings - Fork 0
37 lines (32 loc) · 1.15 KB
/
issue-reminder.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: "Open-Issue-Reminder"
on:
schedule:
- cron: "0 0 * * *"
jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v5
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const threeDays = 259200000; // Milliseconds in 3 days
const now = Date.now();
const issueList = await github.issues.listForRepo({
owner: context.repo.owner,
repo: context.repo.repo,
state: 'open',
});
for (const issue of issueList.data) {
const issueAge = now - issue.created_at;
if (issueAge > threeDays) {
const commentBody = `Hi there! This issue is still open. We are waiting for your response.
Assignees: ${issue.assignees.map(assignee => '@' + assignee.login).join(', ') || 'None'}`;
await github.issues.createComment({
issue_number: issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: commentBody
});
}
}