aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/remove-labels-on-pr-close.yml
blob: 477c90d9f26e65394a8a78be5f5cd48a94cb254c (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:
        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 }}