mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
19 lines
461 B
YAML
19 lines
461 B
YAML
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@96fdaaa056f1cfa7ffbc4c69b7e9007279f76c94
|
|
with:
|
|
lock-bot-key: ${{ secrets.LOCK_BOT_PRIVATE_KEY }}
|