mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
d11f622699
Summary: This updates the Issue Triaging bot to ping the oncall ## Changelog: [INTERNAL] - Pull Request resolved: https://github.com/facebook/react-native/pull/49359 Test Plan: Nothing to test Reviewed By: cipolleschi Differential Revision: D69527137 Pulled By: cortinico fbshipit-source-id: 7291054a734bf9f7240002773b716b2057aa8eca
28 lines
739 B
YAML
28 lines
739 B
YAML
name: Monitor React Native New Issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 */6 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
monitor-issues:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
- name: Monitor New Issues
|
|
uses: react-native-community/repo-monitor@v1.0.0
|
|
with:
|
|
task: "monitor-issues"
|
|
git_secret: ${{ secrets.GITHUB_TOKEN }}
|
|
notifier: "discord"
|
|
fetch_data_interval: 6
|
|
repo_owner: "facebook"
|
|
repo_name: "react-native"
|
|
discord_webhook_url: "${{ secrets.DISCORD_WEBHOOK_URL }}"
|
|
discord_id_type: "role"
|
|
discord_ids: "1339243367841927228"
|