-
Notifications
You must be signed in to change notification settings - Fork 105
/
Copy pathaction.yml
62 lines (62 loc) · 1.6 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
name: 'Allure Report with history'
description: 'Generate Allure Report with history'
author: 'simple-elf'
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'
gh_pages:
description: 'Folder with gh-pages branch'
required: true
default: 'gh-pages'
allure_history:
description: 'Folder for allure history'
required: true
default: 'allure-history'
subfolder:
description: 'subfolder'
required: false
default: ''
keep_reports:
description: 'Keep X last reports'
required: false
default: '20'
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_repo_owner:
description: 'GitHub repository owner'
required: true
default: ${{ github.repository_owner }}
github_tests_repo:
description: 'GitHub repository where test are run'
required: true
default: ${{ github.repository }}
report_url:
description: 'Use a custom URL instead of *.github.io'
required: false
default: ''
github_server_url:
description: 'GitHub server URL'
required: true
default: ${{ github.server_url }}
runs:
using: 'docker'
image: 'Dockerfile'