-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaction.yml
33 lines (33 loc) · 1.19 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
name: "Lendable's Sloth"
description: "A GitHub Action that enables optimized and flexible continuous integration suites"
branding:
icon: git-merge
color: orange
inputs:
token:
description: "GitHub token to use to interact with the GitHub API."
default: "${{ github.token }}"
required: false
ref:
description: "Git reference to inspect check runs for. The default supports Pull Requests, Merge Queues as well as branch pushes."
required: false
default: ${{ github.event.pull_request.head.sha || github.sha }}
interval:
description: "The number of seconds in between polls of the GitHub API for check run conclusions."
required: false
default: "10"
timeout:
description: "The number of seconds before the job is declared a failure if check runs have not yet concluded."
required: false
default: "600"
name:
description: "The name of the Sloth's own check run. This is used to ensure Sloth does not wait upon itself."
required: false
default: "sloth"
ignored:
description: "A multi-line list of check run names to ignore when determining an overall result."
required: false
default: ""
runs:
using: node20
main: dist/index.js