From 4c92c37c2afd1aaf38df1c1d3ce0922fb21dc91a Mon Sep 17 00:00:00 2001 From: Joey Perrott Date: Fri, 28 Jan 2022 11:20:41 -0800 Subject: [PATCH] build: add an action for handling feature requests Add feature request voting process github actions to the repo. --- .github/workflows/feature-requests.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/feature-requests.yml diff --git a/.github/workflows/feature-requests.yml b/.github/workflows/feature-requests.yml new file mode 100644 index 000000000000..6aee09285c3c --- /dev/null +++ b/.github/workflows/feature-requests.yml @@ -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 }}