-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
45 lines (41 loc) · 1.08 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Autopep8 Action
description: Automatically runs the autopep8 command on all your changes.
author: Conrad Großer <[email protected]>
inputs:
commit_message:
description: Commit message
required: false
default: 'Adjusted files for PEP-8 compliance'
commit_options:
description: Commit options
required: false
file_pattern:
description: File pattern used for `git add`
required: false
default: '*'
checkpath:
description: Path autopep8 checks
required: false
default: '.'
options:
description: Parameters for autopep8
required: false
default: ''
dry:
description: Should this script apply autopep8 directly or just warn?
required: false
default: false
no_commit:
description: Can be used to avoid committing the changes
required: false
default: false
github_token:
description: GitHub Token or PAT token used to authenticate against a repository
required: false
default: ${{ github.token }}
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'fast-forward'
color: 'green'