generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 5
/
action.yml
29 lines (29 loc) · 825 Bytes
/
action.yml
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
name: 'Pull Request Milestone'
description: 'Add milestone to PRs'
author: 'iyu'
inputs:
repo-token:
description: 'The GITHUB_TOKEN secret'
configuration-path:
description: 'The path for the milestone configurations'
default: '.github/milestone.yml'
configuration-repo:
description: 'Configuration repository'
default: ''
silent:
description: 'Be silent in case of any failure'
default: false
force:
description: 'Force update of existing milestone if needed'
default: false
clear:
description: 'Clear existing milestone when no match is found from the configuration'
default: false
outputs:
milestone:
description: 'The milestone added to the PR'
previous:
description: 'Previous milestone attached to the PR'
runs:
using: 'node20'
main: 'lib/main.js'