Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/pull-request-reminder.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Pull Request Reminder
on:
workflow_dispatch:
schedule:
- cron: "0 8,12,16 * * 1-5"

permissions:
pull-requests: read
jobs:
pull-request-reminder:
runs-on: ubuntu-latest
steps:
- name: Pull request reminder
uses: BottlecapDave/GitHub-Pull-Request-Reminder@v1
with:
github-access-token: ${{ secrets.GITHUB_TOKEN }}
github-repos: ${{ github.repository }}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I saw this can be a comma separated list of repos - maybe there would be an advantage of setting it up once for all the repos we care about? (either here or in the digital-editor-issues repo)

Happy to merge this in first here first if you think they would be better separate or want to try it in one repo to begin with.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@zetter-rpf I considered it but then thought it to keep it linked to the repo rather than the team. 🤷🏻‍♂️
Let's run this one and see where we get to.

include-wip: 'false'
include-draft: 'false'
# mandatory-labels: 'your-label-1,your-label-2'
# excluded-labels: 'wip,do-not-merge'
slack-webhook-url: ${{ secrets.PR_REMINDER_SLACK_WEBHOOK_URL }}