diff options
-rw-r--r-- | .github/workflows/remove-labels-on-pr-close.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/remove-labels-on-pr-close.yml b/.github/workflows/remove-labels-on-pr-close.yml new file mode 100644 index 000000000..477c90d9f --- /dev/null +++ b/.github/workflows/remove-labels-on-pr-close.yml @@ -0,0 +1,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 }} |