test new discussion creation #57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Send pending review notifications to reviewer on github-discussion | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
send_notifications: | |
name: Send pending review notifications | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-22.04] | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.8.15' | |
architecture: 'x64' | |
- uses: SD-13/stale-review-request-notifier@create_new_discussions | |
with: | |
category-name: Notify\ Reviewers2 | |
discussion-title: Pending\ Reviews | |
repo-token: ${{ secrets.DISCUSSION_NOTIFICATION_TOKEN }} | |
review-turnaround-hours: 48 |