Skip to content

Commit

Permalink
issue-reminder.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
amiya-cyber authored Oct 30, 2024
1 parent 714281c commit 48397f9
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/issue-reminder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@

name: 'open-issue reminder'

on:
schedule:
- cron: '15 4 * * *'
jobs:
welcome:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2

- name: Run script
uses: actions/github-script@v4
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const { data: issues } = await github.issues.listForRepo({
owner: context.repo.owner,
repo: context.repo.repo,
state: 'open'
});
for (const issue of issues) {
const issueComment = `Hi there! This issue is still open. We are looking forward to 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: issueComment
});
}

0 comments on commit 48397f9

Please sign in to comment.