-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaction.yaml
33 lines (33 loc) · 917 Bytes
/
action.yaml
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: Simple Diff
description: Returns a set of true/false values for the diff state of a file or folder.
author: mudlabs
branding:
icon: copy
color: yellow
runs:
using: node12
main: action.js
inputs:
path:
description: The path of the file or folder to find in the commits diff tree.
strict:
description: Specifies the action should fail if the provided path is not in the commits diff tree.
required: false
default: true
token:
description: PAT for authorisation.
required: false
default: ${{ github.token }}
outputs:
added:
description: Specifies the item was added.
modified:
description: Specifies the item was modified.
removed:
description: Specifies the item was removed.
renamed:
description: Specifies the item was renamed.
name:
description: Specifies the item name.
previous:
description: The files previous name, or its name.