-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
34 lines (34 loc) · 912 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
33
34
name: 'Allure Single File Report'
description: 'Generate Allure Single File Report'
author: 'jcleigh'
branding:
icon: 'layout'
color: 'green'
inputs:
allure_results:
description: 'Allure test result data dir'
required: true
default: 'allure-results'
allure_report:
description: 'Allure report target dir'
required: true
default: 'allure-report'
github_run_num:
description: 'GitHub Actions build number'
required: true
default: ${{ github.run_number }}
github_run_id:
description: 'GitHub Actions run id'
required: true
default: ${{ github.run_id }}
github_repo:
description: 'GitHub repository'
required: true
default: ${{ github.repository }}
github_server_url:
description: 'GitHub server URL'
required: true
default: ${{ github.server_url }}
runs:
using: 'docker'
image: 'Dockerfile'