https://github.com/angular/angular
Raw File
Tip revision: 0f8e748b078bbae38b0796d1dc01feade47add2d authored by Andrew Scott on 10 March 2022, 19:14:48 UTC
release: cut the v13.3.0-rc.0 release (#45321)
Tip revision: 0f8e748
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@ff24a8ca7be9066fc9a7ece62c1b62d064c3dfff
        with:
          angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
back to top