From b7f739545a80dad32350deb052510579870bdd59 Mon Sep 17 00:00:00 2001 From: AtomicFS Date: Fri, 2 Aug 2024 12:00:12 +0200 Subject: [PATCH] feat(ci): add reminder bot - this can be useful for some issues that are blocked by mainstream to periodically ping on issues - perfect for issue #302 Signed-off-by: AtomicFS --- .github/workflows/bot--reminder.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/bot--reminder.yml diff --git a/.github/workflows/bot--reminder.yml b/.github/workflows/bot--reminder.yml new file mode 100644 index 00000000..30857aa8 --- /dev/null +++ b/.github/workflows/bot--reminder.yml @@ -0,0 +1,20 @@ +--- +# Docs: https://github.com/agrc/create-reminder-action +name: 'reminder' + +on: + schedule: + - cron: '0 0 * * *' + issue_comment: + types: [created, edited] + +permissions: + issues: write + pull-requests: write + +jobs: + stale: + runs-on: ubuntu-latest + steps: + - name: Check for reminders + uses: agrc/create-reminder-action@v1