https://github.com/angular/angular
Raw File
Tip revision: a72ff8b055dbaef6134e28073eb0cd16034354d8 authored by Andrew Kushnir on 20 July 2022, 17:30:38 UTC
release: cut the v14.0.7 release
Tip revision: a72ff8b
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@4b8b706a0cd6ae9bc542fe74417040375239aeeb
        with:
          angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
back to top