ci(label-actions): actions can't directly access secrets

Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
This commit is contained in:
Rachel Powers
2025-03-14 10:35:35 -07:00
parent 7cbdb80f6b
commit da3f378d5d
4 changed files with 17 additions and 18 deletions

View File

@@ -1,4 +1,4 @@
name: Manual workflow to apply labels in bulk
name: Apply labels in bulk
on:
workflow_dispatch:
@@ -38,6 +38,7 @@ jobs:
- name: Run Label Action
uses: ./.github/actions/add-labels
with:
gh_token: ${{ secrets.GITHUB_TOKEN }}
issues: ${{ inputs.issues }}
labels: ${{ inputs.labels }}
colors: ${{ inputs.colors }}

View File

@@ -1,5 +1,5 @@
name: Manual workflow to delete labels in bulk
name: Delete labels in bulk
on:
workflow_dispatch:
@@ -26,4 +26,5 @@ jobs:
- name: Run Label Action
uses: ./.github/actions/delete-labels
with:
gh_token: ${{ secrets.GITHUB_TOKEN }}
labels: ${{ inputs.labels }}