https://github.com/angular/angular
Raw File
Tip revision: 967e9345b39db19b81114fc7bdb8456c3db7364c authored by Dylan Hunn on 04 May 2022, 20:12:56 UTC
release: cut the v14.0.0-next.16 release (#45875)
Tip revision: 967e934
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@a7d07a6f66c05791fdde2dd372da4ba55c1d524b
        with:
          lock-bot-key: ${{ secrets.LOCK_BOT_PRIVATE_KEY }}
back to top