A GitHub action, meant to be run on a schedule, to list all open pull requests on a GitHub repository.
name: Verify All Open Pull Requests
on:
schedule:
- cron: "0 9 * 1-5 *"
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Get PR list
uses: leopic/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
slackbot-token: YOUR_SLACKBOT_TOKEN
slack-conversation-id: YOUR_CHANNEL_ID