-
Notifications
You must be signed in to change notification settings - Fork 4
/
action.yml
32 lines (32 loc) · 965 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
30
31
32
# action.yml
name: 'Action Auto Changelog'
description: 'Create a changelog automatically'
author: 'AhmadAwais'
runs:
using: 'docker'
image: 'Dockerfile'
inputs:
github_token:
description: 'Token for the repo. Can be passed in using $\{{ secrets.GITHUB_TOKEN }}'
required: true
repository:
description: 'Repository name to push. Default or empty value represents current github repository (${GITHUB_REPOSITORY})'
default: ''
required: false
branch:
description: 'Destination branch to push changes'
required: false
default: 'master'
force:
description: 'Determines if force push is used'
required: false
tags:
description: 'Determines if --tags is used'
required: false
directory:
description: 'Directory to change to before pushing.'
required: false
default: '.'
branding:
icon: 'shuffle'
color: 'green'