-
Notifications
You must be signed in to change notification settings - Fork 6
/
action.yml
30 lines (30 loc) · 1.18 KB
/
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
30
name: Project management automations
author: Darren Ethier
description: >
Various automations to assist with project management of a repository.
inputs:
github_token:
description: Secret GitHub API token to use for making API requests.
required: true
automations:
description: |
A list of specific automations you want to run if you don't want to use them all in a given workflow. If not included, all of the current automations will run.
required: false
default: ''
milestone_bump_strategy:
description: |
For the assign-milestone workflow, this controls which milestone is selected based on the version in package.json:
'none' - Assign to the current major.minor version.
'patch' - Assign to the next patch version.
'minor' - Assign to the next minor version.
'major' - Assign to the next major version.
required: false
default: minor
target_milestone:
description: |
Title of the milestone that will be updated.
required: false
default: ''
runs:
using: 'node12'
main: 'dist/index.js'