-
Notifications
You must be signed in to change notification settings - Fork 45
72 lines (60 loc) · 1.89 KB
/
labels.yml
File metadata and controls
72 lines (60 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
name: 'Auto Labels'
on:
workflow_dispatch:
issues:
types: [labeled, unlabeled]
pull_request:
types: [labeled]
permissions:
contents: read
issues: write
jobs:
# Auto Labels - https://github.com/dessant/label-actions
auto_labels:
name: Handle Labels
runs-on: ubuntu-20.04
if: github.actor == 'dakanji'
steps:
- uses: dessant/label-actions@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
config-path: '.github/label-config.yml'
process-only: ''
# Check Labels - https://github.com/mheap/github-action-required-labels
handle_enhance_check:
name: Handle Enhance - Check
needs: [auto_labels]
runs-on: ubuntu-20.04
if: ${{ always() && github.actor == 'dakanji' && (github.event.label.name == 'Invalid' || github.event.label.name == 'Not-Planned') }}
outputs:
status: ${{ steps.handle_enhance_check_main.outputs.status }}
steps:
- id: handle_enhance_check_main
uses: mheap/github-action-required-labels@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
mode: exactly
count: 1
labels: "Enhancement"
exit_type: success
# Close Issue - https://github.com/actions-cool/issues-helper
handle_enhance_act:
name: Handle Enhance - Act
needs: [handle_enhance_check]
runs-on: ubuntu-20.04
if: needs.handle_enhance_check.outputs.status == 'success'
steps:
- name: Tag Item
uses: actions-cool/issues-helper@v3
with:
actions: 'add-labels'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}
labels: 'Tagged'
- name: Close Item
uses: actions-cool/issues-helper@v3
with:
actions: 'close-issue'
token: ${{ secrets.GITHUB_TOKEN }}
issue-number: ${{ github.event.issue.number }}