-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathaction.yaml
35 lines (28 loc) · 965 Bytes
/
action.yaml
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: Comment Webpage Screenshot
description: A GitHub Action that captures screenshots of webpages and HTML files in the repository and comments them on the pull request
author: Maksudul Haque
branding:
icon: 'image'
color: 'blue'
inputs:
upload_to:
description: 'Service to use for uploading the screenshots. (Options: github_branch, imgur)'
required: false
default: 'github_branch'
capture_changed_html_files:
description: 'Capture Screenshots of Changed/Added HTML Files. (Options: yes, no)'
required: false
default: 'yes'
capture_html_file_paths:
description: 'Capture Screenshot of HTML Files Seperated by Comma.'
required: false
capture_urls:
description: 'Capture Screenshot of URLs Seperated by Comma.'
required: false
github_token:
description: 'GITHUB_TOKEN or Personal Access Token (PAT)'
required: false
default: ${{ github.token }}
runs:
using: 'docker'
image: 'Dockerfile'