Skip to content

Commit 7d0d2c8

Browse files
josephperrottdgp1130
authored andcommitted
build: add an action for handling feature requests
Add feature request voting process github actions to the repo. (cherry picked from commit c47195a)
1 parent 5fd15e6 commit 7d0d2c8

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Feature request triage bot
2+
3+
on:
4+
schedule:
5+
# Run at 13:00 every day
6+
- cron: '0 13 * * *'
7+
8+
jobs:
9+
feature_triage:
10+
# To prevent this action from running in forks, we only run it if the repository is exactly the
11+
# angular/angular-cli repository.
12+
if: github.repository == 'angular/angular-cli'
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: angular/dev-infra/github-actions/feature-request@354871956801929457d9f08482fb81f7012ed7c8
16+
with:
17+
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

0 commit comments

Comments
 (0)