Skip to content

PR Reminders

PR Reminders #7

Workflow file for this run

name: PR Reminders
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
jobs:
update:
if: github.repository_owner == 'adobecom'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Remind PR initiators
uses: actions/github-script@v7
with:
script: |
const main = require('./.github/workflows/pr-reminders.js')
main({ github, context })
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}