Skip to content

Commit

Permalink
build: add an action for handling feature requests (#24306)
Browse files Browse the repository at this point in the history
Add feature request voting process github actions to the repo.

(cherry picked from commit 31f8ae9)
  • Loading branch information
josephperrott authored and amysorto committed Jan 31, 2022
1 parent d984cce commit 8bd529b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/feature-requests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Feature request triage bot

on:
schedule:
# Run at 15:00 every day
- cron: '0 15 * * *'

jobs:
feature_triage:
if: github.repository == 'angular/components'
runs-on: ubuntu-latest
steps:
- uses: angular/dev-infra/github-actions/feature-request@8298e121c51960857ef39abc16b743775ff6be68
with:
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

0 comments on commit 8bd529b

Please sign in to comment.