16 lines
402 B
YAML
16 lines
402 B
YAML
name: Feature request triage bot
|
|
|
|
on:
|
|
schedule:
|
|
# Run at 14:00 every day
|
|
- cron: '0 14 * * *'
|
|
|
|
jobs:
|
|
feature_triage:
|
|
if: github.repository == 'angular/angular'
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: angular/dev-infra/github-actions/feature-request@f83903fe1ac848407ef81465f66588e5accb6537
|
|
with:
|
|
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
|