generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 140
/
action.yml
45 lines (45 loc) · 1.03 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
43
44
45
name: Get All Changed Files
description: Get all of the files changed/modified in a pull request or push's commits.
author: Jitterbit, Inc.
branding:
icon: file
color: purple
runs:
using: node12
main: dist/index.js
inputs:
token:
description: >
GitHub token for GitHub API requests.
Users shouldn't need to set this themselves.
required: true
default: ${{ github.token }}
format:
description: >
Format of the steps output context.
Can be 'space-delimited', 'csv', or 'json'.
required: true
default: space-delimited
outputs:
all:
description: >
Array of all changed files.
added:
description: >
Array of added files.
modified:
description: >
Array of modified files.
removed:
description: >
Array of removed files.
renamed:
description: >
Array of renamed files.
added_modified:
description: >
Array of all added and modified files.
# For backwards-compatibility
deleted:
description: >
Array of deleted files.