Skip to content

Commit 31f8ae9

Browse files
build: add an action for handling feature requests (#24306)
Add feature request voting process github actions to the repo.
1 parent 1f40b7d commit 31f8ae9

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Feature request triage bot
2+
3+
on:
4+
schedule:
5+
# Run at 15:00 every day
6+
- cron: '0 15 * * *'
7+
8+
jobs:
9+
feature_triage:
10+
if: github.repository == 'angular/components'
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: angular/dev-infra/github-actions/feature-request@8298e121c51960857ef39abc16b743775ff6be68
14+
with:
15+
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

0 commit comments

Comments
 (0)