mirror of
https://github.com/LizardByte/Sunshine.git
synced 2026-08-07 18:36:34 +00:00
1df4c89026
Co-authored-by: ReenigneArcher <42013603+ReenigneArcher@users.noreply.github.com>
31 lines
701 B
YAML
31 lines
701 B
YAML
---
|
|
# This workflow is centrally managed in https://github.com/<organization>/.github/
|
|
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in
|
|
# the above-mentioned repo.
|
|
|
|
# Label and un-label actions using `../label-actions.yml`.
|
|
|
|
name: Issues
|
|
permissions: {}
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- labeled
|
|
- unlabeled
|
|
discussion:
|
|
types:
|
|
- labeled
|
|
- unlabeled
|
|
|
|
jobs:
|
|
label:
|
|
name: Label Actions
|
|
if: startsWith(github.repository, 'LizardByte/')
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Label Actions
|
|
uses: dessant/label-actions@v4
|
|
with:
|
|
github-token: ${{ secrets.GH_BOT_TOKEN }}
|