mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 18:09:59 +03:00
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:
parent
7cbdb80f6b
commit
da3f378d5d
4 changed files with 17 additions and 18 deletions
3
.github/workflows/manual-add-label.yml
vendored
3
.github/workflows/manual-add-label.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
3
.github/workflows/manual-delete-labels.yml
vendored
3
.github/workflows/manual-delete-labels.yml
vendored
|
|
@ -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 }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue