-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
32 lines (30 loc) · 900 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
name: 'lowendinsight'
description: 'Runs lowendinsight against a GitHub repository and saves the output to the repo root directory'
author: 'gtri'
branding:
icon: upload-cloud
color: green
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: true
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: '.'
runs:
using: 'docker'
image: 'Dockerfile'