https://github.com/angular/angular
Raw File
Tip revision: 3feb9aea2e86b2c88a07d0eead392e92f958beba authored by Dylan Hunn on 27 April 2023, 07:14:55 UTC
release: cut the v16.0.0-rc.3 release
Tip revision: 3feb9ae
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@070bfccea3fc824c834bbf09ac84835889165878
        with:
          angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
back to top