From bdecdee7745c5713f7430fc9936d9d3dfe367df0 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 30 Nov 2023 00:54:53 +0100 Subject: Auto removing all labels of prs on merging/closing. --- .github/workflows/remove-labels-on-pr-close.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/remove-labels-on-pr-close.yml (limited to '.github/workflows') 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 }} -- cgit