https://github.com/angular/angular
Raw File
Tip revision: 9c9a52540ca22a76200e1b3aef2f7e372398e589 authored by Dylan Hunn on 30 March 2022, 21:20:54 UTC
release: cut the v13.3.1 release (#45485)
Tip revision: 9c9a525
lock-closed.yml
name: Lock closed inactive issues

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

# Declare default permissions as read only.
permissions:
  contents: read

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