-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yml
31 lines (31 loc) · 928 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
name: "Container Action using github-stats-pages"
description: "Retrieve github stats and push static content"
author: "Chun Ly"
inputs:
username:
description: "GitHub username or organization name"
required: true
token:
description: "GitHub Personal Access Token"
required: true
include-repos:
description: "List of repositories to only include for static pages. Comma-separated list"
required: false
default: ''
exclude-repos:
description: "List of repositories to exclude from public list of repositories. Comma-separated list"
required: false
default: ''
test:
description: "Runs a subset of repositories (e.g., use in CI testing)"
required: false
default: ''
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.username }}
- ${{ inputs.token }}
- ${{ inputs.include-repos }}
- ${{ inputs.exclude-repos }}
- ${{ inputs.test }}