https://github.com/angular/angular
Raw File
Tip revision: bcc4a95c444b555272f89fda7bd04238414b11d5 authored by Alex Rickabaugh on 28 September 2022, 21:20:55 UTC
release: cut the v15.0.0-next.4 release
Tip revision: bcc4a95
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@3c526cbb36b8517829dbbf02a7833fa3081479bb
        with:
          angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
back to top