-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
66 lines (55 loc) · 1.61 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
name: 'Docstring Auditor'
author: 'Rob Luke'
description: 'Use AI to review your code documentation.'
branding:
icon: 'code'
color: 'blue'
inputs:
openaiApiKey:
description: "OpenAI API Key"
required: true
path:
description: "Path to the file or directory to run the action on"
required: true
model:
description: "OpenAI model to use"
required: false
default: "gpt-4"
code-block-name:
description: "Single code block name to analyse"
required: false
default: ""
ignore-dirs:
description: "Directories to ignore"
required: false
default: "tests"
auto-fix:
description: "Automatically fix issues"
required: false
default: false
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Hatch
shell: bash
run: pip install --upgrade hatch
- name: Execute
if: ${{ inputs.auto-fix }}
shell: bash
run: hatch run docstring-auditor --model ${{ inputs.model }} --code-block-name ${{ inputs.code-block-name }} --ignore-dirs ${{ inputs.ignore-dirs }} --auto-fix ${{ inputs.path }}
env:
OPENAI_API_KEY: ${{ inputs.openaiApiKey }}
- name: Execute
if: ${{ inputs.auto-fix == false}}
shell: bash
run: hatch run docstring-auditor --model ${{ inputs.model }} --code-block-name ${{ inputs.code-block-name }} --ignore-dirs ${{ inputs.ignore-dirs }} ${{ inputs.path }}
env:
OPENAI_API_KEY: ${{ inputs.openaiApiKey }}