-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
42 lines (41 loc) · 1.15 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
# Copyright (c) Curt Bushko.
# SPDX-License-Identifier: MPL-2.0
name: "commit-status-action"
description: "A github action to update the status on a commit"
author: "curtbushko"
branding:
icon: "thumbs-up"
color: "green"
inputs:
token:
description: "GITHUB_TOKEN or your own token if you need to update status checks to another repo"
required: true
state:
description: "The status of the check: success, error, failure, pending or cancelled"
required: true
context:
description: "The context, this is displayed as the name of the check"
default: "default"
required: false
description:
description: "Short text explaining the status of the check"
default: ""
required: false
owner:
description: "Repostory owner"
default: ${{ github.repository_owner }}
required: false
repository:
description: "Repository"
default: ${{ github.repository }}
required: false
sha:
description: "SHA of commit to update status on"
default: ${{ github.sha }}
required: false
details_url:
description: "URL/URI to use for further details."
required: false
runs:
using: docker
image: Dockerfile