https://github.com/angular/angular
Raw File
Tip revision: aef18bcbd68a25de0cb14481789e4bd7f8e02c37 authored by Andrew Scott on 07 October 2021, 19:08:50 UTC
release: cut the v13.0.0-next.15 release (#43769)
Tip revision: aef18bc
lock-closed.yml
name: Lock closed inactive issues

on:
  schedule:
    # Run at 16:00 every day
    - cron: '0 16 * * *'

jobs:
  lock_closed:
    if: github.repository == 'angular/angular'
    runs-on: ubuntu-latest
    steps:
      - uses: angular/dev-infra/github-actions/lock-closed@7679cff885633cd33bf5ac7922a5304e8971a5a6
        with:
          lock-bot-key: ${{ secrets.LOCK_BOT_PRIVATE_KEY }}
back to top