1name: Labeling closed issues
2on:
3  issues:
4    types: ['closed']
5
6jobs:
7  automate-issues-labels:
8    runs-on: ubuntu-latest
9    if: github.repository == 'llvm/llvm-project'
10    steps:
11      - uses: andymckay/labeler@1.0.4
12        with:
13          remove-labels: 'awaiting-review'
14