-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
38 lines (37 loc) · 939 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
32
33
34
35
36
37
name: 'CI Status Control'
branding:
icon: 'check-circle'
color: 'white'
description: |
'Allows users to skip the CI pipeline based on commit messages or file paths.'
inputs:
run-id:
description: 'The workflow run identifier'
required: true
github-token:
description: 'GitHub authentiction token.'
required: true
excluded-paths:
description: 'A list of paths that should be excluded from CI.'
required: false
default: '[]'
stop-internally:
description: 'Whether or not the action should stop the workflow itself.'
required: false
default: 'true'
skip-ci-message:
description: 'The string in the commit message to skip the CI run.'
required: false
default: '[skip ci]'
outputs:
stop-code:
description: |
The behaviour of the action:
- `continue`
- `cancel`
- `skip`
- `neutral`
- `fail`
runs:
using: 'node12'
main: 'index.js'