File tree Expand file tree Collapse file tree 2 files changed +20
-17
lines changed Expand file tree Collapse file tree 2 files changed +20
-17
lines changed Original file line number Diff line number Diff line change 1
1
FROM python:3-slim
2
2
3
- COPY . /ci
3
+ COPY . /action/workspace
4
4
5
- WORKDIR /ci
5
+ WORKDIR /action/workspace
6
6
7
7
RUN pip install --no-cache-dir -r requirements.txt
8
8
9
- ENTRYPOINT ["python3" , "main.py" ]
9
+ CMD ["/action/workspace/main.py" ]
10
+ ENTRYPOINT ["python3" , "-u" ]
Original file line number Diff line number Diff line change 1
- name : " Create JIRA tickets from SARIF"
2
- description : " Create JIRA tickets from SARIF"
1
+ ---
2
+ name : ' Create JIRA tickets from SARIF'
3
+ description : ' Create JIRA tickets from SARIF'
4
+ author : ' GeorgeDavis-Ibexlabs'
3
5
inputs :
4
6
input_type :
5
- description : " SARIF ingest type"
7
+ description : ' SARIF ingest type'
6
8
required : false
7
9
default : ' file'
8
10
input_format :
9
- description : " SARIF ingest format"
11
+ description : ' SARIF ingest format'
10
12
required : false
11
13
default : ' sarif'
12
14
jira_cloud_url :
13
- description : " JIRA Cloud URL"
15
+ description : ' JIRA Cloud URL'
14
16
required : true
15
17
jira_project_key :
16
- description : " JIRA Cloud Project key"
18
+ description : ' JIRA Cloud Project key'
17
19
required : true
18
20
jira_auth_email :
19
- description : " JIRA Cloud Authentication email"
21
+ description : ' JIRA Cloud Authentication email'
20
22
required : true
21
23
jira_api_token :
22
- description : " JIRA Cloud API key"
24
+ description : ' JIRA Cloud API key'
23
25
required : true
24
26
jira_default_issue_labels :
25
- description : " Comma-separated labels that would be tagged on all issues created by the Python script"
27
+ description : ' Comma-separated labels that would be tagged on all issues created by the Python script'
26
28
required : false
27
- default : " "
29
+ default : ' '
28
30
jira_use_atlassian_document_format :
29
- description : " Set true or false to use Atlassian Document Format (ADF)"
31
+ description : ' Set true or false to use Atlassian Document Format (ADF)'
30
32
required : false
31
- default : " false"
33
+ default : ' false'
32
34
jira_create_sub_tasks :
33
- description : " Set true or false to create sub-tasks"
35
+ description : ' Set true or false to create sub-tasks'
34
36
required : false
35
- default : " false"
37
+ default : ' false'
36
38
branding :
37
39
icon : ' file-plus'
38
40
color : ' purple'
You can’t perform that action at this time.
0 commit comments