2022-08-07 23:33:19 +00:00
|
|
|
---
|
2022-07-30 01:45:02 +00:00
|
|
|
# This action 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.
|
|
|
|
|
2023-01-01 03:38:46 +00:00
|
|
|
# Label and un-label actions using `../label-actions.yml`.
|
|
|
|
|
2022-07-30 01:45:02 +00:00
|
|
|
name: Issues
|
2021-12-16 15:39:14 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
issues:
|
|
|
|
types: [labeled, unlabeled]
|
2022-02-06 22:42:38 +00:00
|
|
|
discussion:
|
2022-08-07 23:33:19 +00:00
|
|
|
types: [labeled, unlabeled]
|
2021-12-16 15:39:14 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
label:
|
2022-02-06 22:42:38 +00:00
|
|
|
name: Label Actions
|
2022-12-10 15:27:26 +00:00
|
|
|
if: startsWith(github.repository, 'LizardByte/')
|
2021-12-16 15:39:14 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-02-06 22:42:38 +00:00
|
|
|
- name: Label Actions
|
2023-11-24 04:28:07 +00:00
|
|
|
uses: dessant/label-actions@v4
|
2021-12-16 15:39:14 +00:00
|
|
|
with:
|
2022-10-10 16:07:07 +00:00
|
|
|
github-token: ${{ secrets.GH_BOT_TOKEN }}
|