https://github.com/angular/angular
Raw File
Tip revision: 296bc993ea3fde9e912381d6ffcae95fb536a166 authored by Nemikolh on 05 June 2023, 13:02:16 UTC
fix(docs-infra): replace use of turbo on StackBlitz with npm (#50576)
Tip revision: 296bc99
feature-requests.yml
name: Feature request triage bot

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

# Declare default permissions as read only.
permissions:
  contents: read

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