ci(label-actions): composit actions to add and delete labels in bulk

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers
2025-03-14 10:26:19 -07:00
parent 0818e7068a
commit 7cbdb80f6b
4 changed files with 410 additions and 0 deletions
@@ -0,0 +1,29 @@
name: Manual workflow to delete labels in bulk
on:
workflow_dispatch:
inputs:
labels:
description: a single or comma separated list of labels to delete
required: true
type: string
jobs:
delete-labels:
name: Delete Labels
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: Checkout Default Branch
uses: actions/checkout@v4
with:
ref: ${{ github.event.repository.default_branch }}
- name: Run Label Action
uses: ./.github/actions/delete-labels
with:
labels: ${{ inputs.labels }}