26 lines
657 B
YAML
Raw Normal View History

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