https://github.com/angular/angular
Raw File
Tip revision: 38257a304d6019a6bc1728b0056372bf4e14be5b authored by Pawel Kozlowski on 08 February 2023, 18:11:14 UTC
release: cut the v15.1.4 release
Tip revision: 38257a3
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@fa428ee0accc999f051008f0daa5651ba2728c2b
        with:
          angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
back to top