https://github.com/angular/angular
Raw File
Tip revision: 86843f8916799f0a75f0e0f0893d0924cc0d719d authored by Kristiyan Kostadinov on 07 December 2021, 07:45:24 UTC
refactor(animations): remove unnecessary code (#44378)
Tip revision: 86843f8
feature-requests.yml
name: Feature request triage bot

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

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