https://github.com/angular/angular
Raw File
Tip revision: 73ec0c61fad8df07fbce3109fcfec46e7304205d authored by Andrew Scott on 30 November 2022, 20:11:37 UTC
release: cut the v15.0.2 release
Tip revision: 73ec0c6
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@d87b1b56a970132f90301624cea6b6d70b6d9489
        with:
          lock-bot-key: ${{ secrets.LOCK_BOT_PRIVATE_KEY }}
back to top