aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/remove-labels-on-pr-close.yml
blob: fd73b7aab384d6ca1b407c9c1c51a613c0c180c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# https://github.com/marketplace/actions/label-remover

name: "Remove All Labels"

on:
    pull_request_target:
        types: [closed]

jobs:
    remove_very_soon:
        runs-on: ubuntu-latest
        steps:
            - uses: actions/checkout@v2
            - uses: rogerluan/label-remover@v1.0.1
              with:
                  github_token: ${{ secrets.github_token }}