Sunshine/.github/workflows/issues.yml

23 lines
544 B
YAML
Raw Normal View History

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.
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
2021-12-16 15:39:14 +00:00
runs-on: ubuntu-latest
steps:
2022-02-06 22:42:38 +00:00
- name: Label Actions
2021-12-16 15:39:14 +00:00
uses: dessant/label-actions@v2
with:
2022-10-10 16:07:07 +00:00
github-token: ${{ secrets.GH_BOT_TOKEN }}