-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
32 lines (29 loc) · 813 Bytes
/
action.yml
File metadata and controls
32 lines (29 loc) · 813 Bytes
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
name: "Set Commit Status Action"
description: "A Github action for set github commit status"
branding:
icon: octagon
color: yellow
inputs:
status:
description: 'The status to be set for commit ("error", "failure", "pending", "success")'
required: true
sha:
description: "Commit hash for which the status is to be set"
required: true
context:
description: "Context of status"
required: false
description:
description: "Description of status"
required: false
github_token:
description: Token with status write permission. Do not specify this.
required: false
default: ${{ github.token }}
job_id:
description: Job id on which this action is running.
required: false
default: ${{ github.job }}
runs:
using: "node20"
main: "dist/index.js"