-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathaction.yml
More file actions
31 lines (31 loc) · 850 Bytes
/
action.yml
File metadata and controls
31 lines (31 loc) · 850 Bytes
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
name: 'Team labeler action'
description: "Add a team label based on the author's team"
author: '@JulienKode'
inputs:
repo-token:
required: true
description: 'The GITHUB_TOKEN secret'
configuration-path:
description: 'The path for the label configurations'
required: false
default: '.github/teams.yml'
teams-repo:
description: 'Get the teams config from another repo'
required: false
default: ''
teams-branch:
description: 'To get the teams config from another repo, specify the branch'
required: false
default: ''
org-token:
description: 'The organization-level token for reading team memberships'
required: false
outputs:
team_labels:
description: 'JSON array of team labels for the author'
runs:
using: 'node24'
main: 'dist/index.js'
branding:
icon: 'users'
color: 'blue'