-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
35 lines (35 loc) · 902 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
35
name: 'Diff Pages Action'
author: 'Sungwon Lee'
description: 'Take screenshots of updated static web pages'
inputs:
base-path:
description: 'Path to base static pages.'
required: true
head-path:
description: 'Path to head static pages.'
required: true
pattern:
description: 'glob pattern for detecting page files.'
required: true
default: '**/*.+(htm|html)'
port:
description: 'Port for running local static web server'
required: true
default: 8000
output-path:
description: 'Path for saving final screenshots.'
required: true
default: diff-pages-action/output
temp-path:
description: 'Path for saving temporary screenshots.'
required: true
default: diff-pages-action/tmp
outputs:
path:
description: 'Path to saved screenshots.'
runs:
using: 'docker'
image: 'Dockerfile'
branding:
icon: 'sidebar'
color: 'orange'