mirror of
https://github.com/angular/angular-cli.git
synced 2025-05-22 23:15:56 +08:00
build: add an action for handling feature requests
Add feature request voting process github actions to the repo.
This commit is contained in:
parent
a0c02af7e3
commit
c47195aea0
17
.github/workflows/feature-requests.yml
vendored
Normal file
17
.github/workflows/feature-requests.yml
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
name: Feature request triage bot
|
||||
|
||||
on:
|
||||
schedule:
|
||||
# Run at 13:00 every day
|
||||
- cron: '0 13 * * *'
|
||||
|
||||
jobs:
|
||||
feature_triage:
|
||||
# To prevent this action from running in forks, we only run it if the repository is exactly the
|
||||
# angular/angular-cli repository.
|
||||
if: github.repository == 'angular/angular-cli'
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: angular/dev-infra/github-actions/feature-request@354871956801929457d9f08482fb81f7012ed7c8
|
||||
with:
|
||||
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
|
Loading…
x
Reference in New Issue
Block a user