Open Pull Requests Reporter
ActionsUse this action for reporting open pull requests via slack webhook
Installation is pretty simple, create separate workflow based on cron job:
name: Open Pull Requests Reporter
on:
schedule:
- cron: "00 09,13 * * 1-5"
workflow_dispatch:
jobs:
send-slack-notification:
name: Open Pull Requests Report
runs-on: ubuntu-latest
steps:
- name: 'Notify in Slack'
uses: rkhaslarov/open-pull-requests-reporter-action@v1.0.1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
slack-webhook: ${{ secrets.OPEN_PULL_REQUESTS_SLACK_WEBHOOK }}
exclude-labels: 'LABEL' # PRs with given labels will be excluded
stale-pr: 2 # Number of days when PR is considered as staleOpen Pull Requests Reporter is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.