Added Custom Checkpath and Parameters Options

This commit is contained in:
2019-11-15 09:38:54 +01:00
parent 3aac0062d0
commit 08c429cdb4
3 changed files with 13 additions and 2 deletions

View File

@@ -12,7 +12,9 @@ The following parameters can be used in your custom action configuration.
| commit_options | :x: | '*' | Custom git commit options| | commit_options | :x: | '*' | Custom git commit options|
| file_pattern | :x: | '.' | Custom file pattern for `git add`| | file_pattern | :x: | '.' | Custom file pattern for `git add`|
| dependencies | :x: | 'requirements.txt' | Path for the repositories 'requirements.txt'. If you have none, you may skip this.| | dependencies | :x: | 'requirements.txt' | Path for the repositories 'requirements.txt'. If you have none, you may skip this.|
| branch | :white_check_mark: | - | The specific branch you want to merge into. Use ${{ github.head_ref }} if you want to use this with pull requests.| | branch | :white_check_mark: | - | The specific branch you want to merge into. Use ${{ github.head_ref }} if you want to use this with pull requests. |
| checkpath | :x: | '.' | The path autopep8 checks |
| autoparameters | :x: | - | Parameters to use with autopep8 |
### Example ### Example

View File

@@ -22,6 +22,13 @@ inputs:
branch: branch:
description: Branch which the changes are merged to description: Branch which the changes are merged to
required: true required: true
checkpath:
description: Path autopep8 checks
required: false
default: '.'
autoparameters:
description: Parameters for autopep8
required: false
runs: runs:
using: 'docker' using: 'docker'
@@ -32,6 +39,8 @@ runs:
- ${{ inputs.file_pattern }} - ${{ inputs.file_pattern }}
- ${{ inputs.dependencies }} - ${{ inputs.dependencies }}
- ${{ inputs.branch }} - ${{ inputs.branch }}
- ${{ inputs.checkpath }}
- ${{ inputs.autoparameters }}
branding: branding:
icon: 'fast-forward' icon: 'fast-forward'

View File

@@ -28,7 +28,7 @@ pip install -r $INPUT_DEPENDENCIES || echo "No dependency file found."
# Apply PEP 8 # Apply PEP 8
echo "Running autopep8..." echo "Running autopep8..."
autopep8 --in-place -r . || echo "Problem running autopep8." autopep8 --in-place -r $INPUT_CHECKPATH ${INPUT_AUTOPARAMETERS:+"$INPUT_AUTOPARAMETERS"} || echo "Problem running autopep8."
if ! git diff --quiet if ! git diff --quiet
then then